Activities to break into computer(s) or technology systems without authorized access and making them do things they were not originally designed to do.
73
votes
11answers
5k views
Why do salts make dictionary attacks 'impossible'?
Possible Duplicate:
Need some help understanding password salt
Update: Please note I am not asking what a salt is, what a rainbow table is, what a dictionary attack is, or what the purpose ...
66
votes
21answers
4k views
Black hat knowledge for white hat programmers
There's always skepticism from non-programmers when honest developers learn the techniques of black hat hackers. Obviously though, we need to learn many of their tricks so we can keep our own security ...
50
votes
13answers
2k views
Found a critical bug, but the company doesn't care [closed]
I know several people who were in a situation like this.
Let's say, you were trying out random sites for basic XSS/SQL Injection vulnerabilities, and you've found one that could be easily ...
38
votes
13answers
7k views
Reverse engineering war stories [closed]
Sometimes you don't have the source code and need to reverse engineer a program or a black box. Any fun war stories?
Here's one of mine:
Some years ago I needed to rewrite a device driver for which ...
29
votes
6answers
4k views
Someone has hacked my database - how did this guy do it?
Someone has hacked my database and has dropped the table.
In my PHP page there is one single query where I am using mysql_real_escape_string:
$db_host="sql2.netsons.com";
$db_name="xxx";
...
27
votes
8answers
3k views
How secure is PHP?
I am somewhat new to PHP coding and I am aware that malicious users can hack a website if you have not sanitized your PHP code. What I am wondering is whether they need a data entry box (like for file ...
27
votes
4answers
4k views
How to store passwords in Winforms application?
I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota.
DirectoryEntry mbstore = new DirectoryEntry(
@"LDAP://" + strhome,
m_serviceaccount,
...
25
votes
10answers
9k views
well written open source projects (for learning)? [closed]
We learn programming by writing programs and learning from other programs.
Which open source code repositories/programs you suggest for learning/improving programming?
While citing reference please ...
23
votes
8answers
2k views
Hacking and exploiting - How do you deal with any security holes you find?
Today online security is a very important factor. Many businesses are completely based online, and there is tons of sensitive data available to check out only by using your web browser.
Seeking ...
22
votes
6answers
12k views
Site has been hacked via SQL Injection
Recently my site was hacked via SQL injection. The Hacker used the following query
to get my DB name. I cannot understand this query they wrote.
Query:
...
21
votes
5answers
2k views
Hacked, what does this piece of code do?
WARNING: This is a possible exploit. Do not run directly on your server if you're not sure what to do with this.
http://pastehtml.com/view/1b1m2r6.txt
I believe this was uploaded via an insecure ...
19
votes
6answers
5k views
Can some hacker steal the cookie from a user and login with that name on a web site?
Reading this question
different users get the same cookie value in aspxanonymous
and search for a solution, I start thinking, if it is possible for some one to really steal the cookie with some way, ...
19
votes
8answers
3k views
How Can I Find Out *HOW* My Site Was Hacked? How Do I Find Site Vulnerabilities?
One of my custom developed ASP.NET sites was hacked today: "Hacked By Swan (Please Stop Wars !.. )"
It is using ASP.NET and SQL Server 2005 and IIS 6.0 and Windows 2003 server.
I am not using Ajax ...
18
votes
10answers
2k views
Can gdb make a function pointer point to another location?
I'll explain:
Let's say I'm interested in replacing the rand() function used by a certain application.
So I attach gdb to this process and make it load my custom shared library (which has a ...
18
votes
5answers
892 views
What are the risks of PHP sessions?
So everyone says that sessions have security risks, I want to know what kind of risks are these? What can hackers do with sessions?
This is not about knowing how to avoid attacks, I want to know how ...
17
votes
3answers
890 views
How secure are CDNs for delivering jQuery?
We build sites that have a public (non-secured) area and secured (delivered over HTTPS) area and we use jQuery library.
Recently I suggested we use Google CDN for jQuery delivery. Some of my ...
16
votes
16answers
1k views
Website hacking - Why it is always possible to do?
Dear web developers, we know that each executable file can be reverse engineered (disassembled, decompiled). No mater how strong security you will implement, anyway if crackers want to, they do ...
15
votes
7answers
1k views
Are secret URLs truly secure?
I never leave backdoors in my system, but out of curiosity I was wondering if I left a secret URL like /x52d23r that allowed to bypass some sort of security, and this was only for my personal ...
15
votes
9answers
8k views
How would I go about prevent DLL injection
So the other day, I saw this:
http://www.edgeofnowhere.cc/viewtopic.php?p=2483118
and it goes over three different methods of DLL injection. How would I prevent these from the process? Or at a bare ...
15
votes
4answers
5k views
CSS/JavaScript/hacking: Detect :visited styling on a link *without* checking it directly OR do it faster than me
This is for research purposes on http://cssfingerprint.com
Consider the following code:
<style>
div.csshistory a { display: none; color: #00ff00;}
div.csshistory a:visited { display: ...
14
votes
6answers
18k views
How can I hook Windows functions in C/C++?
If I have a function foo() that windows has implemented in kernel32.dll and it always returns true, can I have my program: "bar.exe" hook/detour that Windows function and make it return false for all ...
14
votes
3answers
1k views
Site was just attacked and javascript was injected at the header, what does it mean?
One of our websites was attacked recently where multiple php files were modified. This modification injected javascript at the top of the page but after base64 decoding all of it I came across the ...
14
votes
6answers
3k views
What does this PHP code do? [closed]
I noticed that this code has been added to some web pages on a site. What does it do exactly?
<?php global $ob_starting;
if(!$ob_starting) {
function ob_start_flush($s) {
$tc = array(0, 69, ...
14
votes
3answers
1k views
Do any real-world CPUs not use IEEE 754?
I'm optimizing a sorting function for a numerics/statistics library based on the assumption that, after filtering out any NaNs and doing a little bit twiddling, floats can be compared as 32-bit ints ...
14
votes
4answers
5k views
Testing for security vulnerabilities in web applications: Best practices?
I'm developing a web application. Like, a proper one, I've used things like Joomla in the past to make awesome stuff but have now finally got my hands dirty with PHP, MySQL and CodeIgniter.
When ...
13
votes
2answers
13k views
Hooking DirectX EndScene from an injected DLL
I want to detour EndScene from an arbitrary DirectX 9 application to create a small overlay. As an example, you could take the frame counter overlay of FRAPS, which is shown in games when activated.
...
13
votes
2answers
401 views
Unable to understand a format string exploitation code
I came across this code showing format string exploitation while reading this article.
#include <stdio.h>
int main(void)
{
char secret[]="hack.se is lame";
char buffer[512];
char target[512];
...
11
votes
2answers
119 views
Buffer overflow appeared before it is expected
I am trying to take a control over a stack overflow. First here is an example of C code I compile on an x32 VM Linux (gcc -fno-stack-protector -ggdb -o first first.c)
#include "stdio.h"
int ...
10
votes
3answers
1k views
Override “private” function in JavaScript
I am monkey-patching some of the jQuery's Draggable code*.
The goal is to avoid modifying the original source files and patch dynamically one of the internal functions.
The function ...
10
votes
1answer
709 views
Can a Mac OS X application prevent dlopen from loading a library?
After some careful debugging, I have discovered a bug in my application that is rooted in the system frameworks loading a buggy Apple bundle:
/System/Library/CoreServices/MLTEFile.bundle
I am ...
9
votes
9answers
813 views
Hacking/cracking deontology [closed]
Let's say you recently discovered some major vulnerabilities in a couple of web sites that activate mainly in your country and are very powerful in their market. The vulnerabilities I'm talking about ...
9
votes
5answers
647 views
Does using preparedStatement mean there will not be any SQL Injection?
I have read that to prevent SQL Injection one must use PreparedStatement.
Does that mean if i am using perparedStatement then no one can perform SQL Injection in any of my page? Is it foolproof ...
9
votes
3answers
414 views
How would I go about implementing this algorithm?
Friday afternoon seems like a good time to ask this question...
A while back I was trying to brute force a remote control which sent a 12 bit binary 'key'.
The device I made worked, but was very ...
9
votes
4answers
4k views
What are some interesting, small Linux kernel projects to help learn the source?
What small projects would you suggest to a novice with the kernel, but someone who has plenty of systems and C experience? The aim is to develop a familiarity with the kernel source code, and a ...
9
votes
3answers
802 views
PHP image upload security approach
I develop a php script to replace a current one, that will have a lot of exposure to various markets/countries.
This script between others offers an photo upload functionality .
After a lot of ...
9
votes
1answer
155 views
Java/Tomcat hacked [closed]
I have had a few files show up on my tomcat server lately that are obviously hacker attempts. I support an older application that uses struts and ibatis along with various other fameworks. Three files ...
9
votes
1answer
238 views
Injecting a Frame Buffer
I've been "hacking" one of my favorite games from when I was younger, and I've managed to be able to intercept OpenGL calls and inject c++ code using an opengl32.dll wrapper. I've been able to come up ...
8
votes
4answers
431 views
Weird Javascript in Template. Is this a hacking attempt?
I validated my client's website to xHTML Strict 1.0/CSS 2.1 standards last week. Today when I re-checked, I had a validation error caused by a weird and previous unknown script. I found this in the ...
8
votes
8answers
1k views
Is this query safe from sql injection?
The script is in PHP and as DB I use MySQL. Here is the script itself.
$unsafe_variable = $_GET["user-input"];
$sql=sprintf("INSERT INTO table (column) VALUES('%s')",$unsafe_variable);
...
8
votes
4answers
1k views
API authentication design and hackability
Question: Is this API authentication technique easily hackable?
apiKey = "123456789"
apiCallId = "1256341451"
apiSecret = "67d48e91ab2b7471d4be2a8c2e007d13"
sig = md5(apiKey + ...
8
votes
4answers
5k views
Where to use mysql_real_escape_string to prevent SQL Injection?
I'm in trouble with a group of hackers. they hacked my client's site few times, and my client gets more angry :( my client lost his database (which has hundreds records), and had to enter all :(
now ...
8
votes
2answers
592 views
Anomaly detection using Python
I work for a webhost and my job is to find and cleanup hacked accounts. The way I find a good 90% of shells\malware\injections is to look for files that are "out of place." For example ...
7
votes
5answers
5k views
readelf-like tool for Mac OS X?
Is there a tool for reading Mac OS X binaries that would print information about relocation tables and symbol offsets similar to this readelf output?
readelf -r app
Relocation section '.rel.dyn' at ...
7
votes
6answers
1k views
How can I avoid SQL injection attacks?
Yesterday I was speaking with a developer, and he mentioned something about restricting the insertions on database field, like, strings such as -- (minus minus).
At the same type, what I know is that ...
7
votes
6answers
1k views
piece of php code for prevent hacking
I have a php file at my site, and I connect to db, get some records and list them in same file.
mysql_connect("localhost", "blabla", "blabla") or die(mysql_error());
mysql_select_db("blabla") or ...
7
votes
4answers
5k views
Hacking training simulator
I've never tried to hack sites. I've just followed security guidelines. Now I want to try to develop more safety.
Is there are any "training sites" with holes and "exercises", with SQL injections, ...
7
votes
10answers
1k views
Good resources on security, hacking etc? [closed]
I am interested in learning about how hackers find and exploit vulnerabilities. Specifically about windows hacking and web hacking i.e. I’m NOT interested in linux/unix stuff.
Are there any good ...
7
votes
4answers
330 views
I was just hacked, but I don't know how or more importantly, why. Very odd code injected
EDIT: Good work all so far.
I've just found this being download and ran in my bash history:
http://notsoft.ru/glib
(safe to view)
Thanks all
======================
I've just noticed the source ...
7
votes
3answers
482 views
Blogs and Books on Encryption and Security [closed]
Could any of you experienced programmers / ethical hackers out there recommend some blogs or books on security/encryption? The only blogs I look at now are
.Net Security Blog ...
7
votes
3answers
2k views
Learning Embedded Firmware Hacking
I have a Samsung TV with connected via optical output to my DTS sound system.TV has ARM CPU and an embedded linux operating system. It comes with an embedded media player.But internal media player do ...
