Tagged Questions
An exploit is a piece of software, a chunk of data, or sequence of commands that takes advantage of a bug, glitch, or vulnerability in order to cause unintended or unanticipated behavior to occur. This frequently includes such things as gaining control of a computer system, allowing privilege escalation, or a denial of service attack.
76
votes
8answers
8k views
Help me understand this JavaScript exploit
I usually do not have difficulty to read JavaScript script but this one I can't figure out the logic. The code is from an Exploit that has been published 4 days ago. You can find it at milw0rm.
Here ...
35
votes
12answers
6k views
Decode email address from Gravatar hash?
I suppose, Gravatar generates the image from email address. If so, the reverse should be possible. How difficult would be to get the email associated with the image? Isnt it a potential spam threat?
...
20
votes
5answers
904 views
Perl CGI hacked? But I'm doing everything right!
I just noticed some strange PHP files in one of my web directories. They turned out to be spammer-placed exploit files.
They've been there since 2006, around the time that I was running a ...
20
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 ...
19
votes
1answer
360 views
What is vulnerable about this C code?
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <stdio.h>
int main(int argc, char **argv, char **envp)
{
gid_t gid;
...
18
votes
4answers
597 views
What are some advanced and modern resources on exploit writing?
I've read and finished both Reversing: Secrets of Reverse Engineering and Hacking: The Art of Exploitation. They both were illuminating in their own way but I still feel like a lot of the techniques ...
14
votes
5answers
1k views
How are buffer overflows used to exploit computers?
How are buffer overflows used to exploit computers?
How is one able to execute arbitrary code simply by causing stack or heap overflows?
I understand that portions of the programs memory are ...
12
votes
6answers
195 views
Can parameterized statement stop all SQL injection?
if yes, why there are still so many successful SQL injections? Just because some developers are too dumb to use parameterized statements? Thanks,
11
votes
8answers
4k 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 ...
9
votes
11answers
955 views
Security exploits in “safe” languages
I just recently finished reading Secure Coding in C and C++ by Brian Seacord, who works for CERT.
Overall, it's an excellent book and I would recommend it to any programmer who hasn't yet read it. ...
9
votes
5answers
427 views
How is integer overflow exploitable?
Does anyone have a detailed explanation on how integers can be exploited? I have been reading a lot about the concept, and I understand what an it is, and I understand buffer overflows, but I dont ...
8
votes
2answers
506 views
Are there any security vulnerabilities in this PHP code?
I just got a site to manage, but am not too sure about the code the previous guy wrote. I'm pasting the login procedure below, could you have a look and tell me if there are any security ...
7
votes
6answers
1k views
To what does “zero day” refer?
Does "zero-day" or "0-day" (in context of software vulnerabilities and exploits) refer to the software release, or a particular type of exploit?
[I did not find an answer to this on SO. Though it is ...
7
votes
3answers
2k views
Stack Overflow Exploit in C
Hey there guys, the question is actually about stack overflows in C.
I have an assigment that I can not get done for the life of me, i've looked at everything in the gdb and I just cant figure it.
...
6
votes
1answer
175 views
Need to exploit buffer overflow. Can't figure out how to uncorrupt the stack after executing exploit code?
Basically the function I am exploiting is this:
int getbufn()
{
char buf[512];
Gets(buf);
return 1;
}
When I run the main program the function executes 5 times and each time the ...
6
votes
3answers
210 views
How is the modified return address in a stack based buffer overflow attack approximated?
I understand that a typical stack based buffer overflow attack payload looks something like this:
(return address) (return address) ...
(return address) (return address)
(return address) ...
6
votes
1answer
551 views
return to libc - problem
I'm having problems with return-to-libc exploit. The problem is that nothing happens, but no segmentation fault (and yes I'm actually overflowing the stack).
This is my program:
int main(int argc, ...
6
votes
1answer
238 views
Why does fireshepard kill firesheep?
I presume there is a bug in the firesheep which fireshepard exploits.
The responsible line might be in that weird string in cookie value for facebook.
fireshepard source
firesheep source
6
votes
4answers
253 views
How to spot java deserialization issues?
i would like to be able to spot problems with deserialization in java code. What should i look for? For example, how would one determine if some java code tries to exploit "java calendar bug"? Note ...
6
votes
2answers
823 views
I don't understand this Code
I do not understand this code snippet :
function ms(){
var plc=unescape('".
unescape( '\x43\x43\x43\x43\n.............\xEF'. $URL).CollectGarbage();
if (mf)return(0);
mf=1;
var ...
5
votes
2answers
346 views
Perl's Pack('V') function in Python?
I've been working on some exploit development recently to get ready for a training course, and I've run into a problem with a tutorial. I've been following along with all the tutorials I can find, ...
5
votes
6answers
722 views
can anyone explain this code to me?
WARNING: This is an exploit. Do not execute this code.
//shellcode.c
char shellcode[] =
"\x31\xc0\x31\xdb\xb0\x17\xcd\x80"
"\xeb\x1f\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b"
...
4
votes
3answers
223 views
Is this code an exploit? What is this code?
I'm looking at a site that has been exploited by someone/something. The site has had a bunch of links injected into it's footer that links to pharmaceutical pitches, and who knows what else. There ...
4
votes
3answers
399 views
Exploits in Python - manipulating hex strings
I'm quite new to python and trying to port a simple exploit I've written for a stack overflow (just a nop sled, shell code and return address). This isn't for nefarious purposes but rather for a ...
4
votes
1answer
482 views
Vulnerabilities in caching of obfuscated key? Android Licensing
I'm caching a user's authentication to whenever the Android Market Licensing ping server returns a GRANT_ACCESS pong.
Does anyone see any vulnerabilities with this strategy? I believe it is very ...
4
votes
2answers
188 views
Testing for security vulnerabilities on web applications
A lot of companies use CMS software that updates on the regular, often they are security fixes, implying that the previous version have security vulnerabilities. But most clients never upgrade this, ...
4
votes
6answers
2k views
How to write a buffer-overflow exploit in GCC,windows XP,x86?
void function(int a, int b, int c) {
char buffer1[5];
char buffer2[10];
int *ret;
ret = buffer1 + 12;
(*ret) += 8;//why is it 8??
}
void main() {
int x;
x = 0;
function(1,2,3);
...
4
votes
5answers
182 views
Detecting exploits in web applications and how to proceed
What ways are there for detecting exploits in PHP/MySQL web applications (checking for certain characters or pieces of codes in the GET, POST, COOKIE arrays / using a library with a database that has ...
4
votes
3answers
1k views
PHP magic_quotes_gpc vulnerability
I've been assigned to one of my company's legacy webapps, and after a day or two of poking around the source, I've found an SQL injection vector similar to the following:
mysql_query("SELECT * FROM ...
4
votes
2answers
565 views
Would a C#/.Net web browser be susceptible to exploits?
Is it correct to say that the .Net platform is more secure because the CLR guards against buffer overflow attacks?
Assuming there was a web browser running in a managed OS (like Cosmos, SharpOS or ...
3
votes
4answers
198 views
PHP code injection. Do we have a security risk?
We have a simple php file that captures emails. It drops these emails into a csv file (which is not executable by php). We recently had someone who managed to hack our site and this seemed like one of ...
3
votes
1answer
495 views
Can anyone explain this assembly code
This is a shellcode to exploit the bufferoverflow vulnerability.
this sets the setuid(0) and spawns a shell using execve()
xor %ebx,%ebx */
lea 0x17(%ebx),%eax */
int $0x80 ...
3
votes
3answers
188 views
How are clientside security vulnerabilities generally discovered?
I mean in operating systems or their applications. The only way I can think of is examine binaries for the use of dangerous functions like strcpy(), and then try to exploit those. Though with compiler ...
3
votes
2answers
471 views
Creating Windows Account using C++
I will give a basic rundown of the situation first. I work for a game server rental company that is falling victim to an exploit inside of a major game engine (source). Basically, the developers left ...
3
votes
7answers
987 views
PHP GET variable array injection
I've recently learned that it's possible to inject arrays into PHP GET variables to perform code execution?
.php?a[]=asd&a[]=asdasd&b[]=$a
That was the example I was given. I have no idea ...
3
votes
1answer
200 views
Vulnerability & Exploit Case Studies
I understand the general idea of how vulnerabilities are exploited. Buffer overflows and stuff like that, but I guess I don't REALLY get it.
Are there useful sources of information that explain this ...
3
votes
2answers
2k views
Sanitizing MySQL user parameters
What are the dangerous characters that should be replaced in user input when the users' input will be inserted in a MySQL query? I know about quotes, double quotes, \r and \n. Are there others?(I ...
2
votes
1answer
72 views
Java - How is dynamic jar loading exploitable?
I'm working on a closed source java app that analyzes JAR files.
Since java can be easily decompiled, and obfuscation really isn't a big deal,
I want to provide an online service that will execute the ...
2
votes
1answer
195 views
PHP code in .gif exploit
I need to know how to generate a GIF with php code inside, or how to modify a gif to add this so that I can perform a test on our avatar upload plugin in wordpress - I just want to ensure it is ...
2
votes
2answers
135 views
Session fixation attack replication, term paper (php)
I'm trying to replicate session for my term paper and I've found quite a bit tips here, but can't replicate an attack on my localhost.
I've tried an example from here:
...
2
votes
1answer
137 views
Is PHP immune to “HTTP Response Splitting” vulnerabilities?
<?php
setcookie('test', "test\r\n<script>alert(1)</script>");
echo 1;
But it turns out PHP automatically does the encoding:
Set-Cookie: ...
2
votes
1answer
4k views
Explanation of Facebook spam code
So, I've just seen this spam code on Facebook, written in JavaScript and I wondered if someone could explain to me how the code works, and interacts with Facebook. I do not intend to use this for ...
2
votes
3answers
263 views
Shellcode as payload for buffer overflow (or other) exploits executed as root?
When I use shellcode such as the ones provided here* as payload to some vulnerable program, how is the shell executed as root? I am asking about how the privileges are elevated to root? The shellcode ...
2
votes
1answer
210 views
Insecure dependency in printf while running setgid
As part of my security class we had to exploit a number of vulnerabilities in a less secure version of ubuntu. I solved all the challenges, however I came across one problem which I am hoping someone ...
2
votes
4answers
803 views
Preventing exploits in Drupal
Is there a good resource or list of known fixes for exploits in Drupal (including common modules) that I can use to close up holes in my sites?
I'm using 6.19 on all my sites, as well as making sure ...
2
votes
3answers
250 views
Unpatched Linux Kernel Vulnerabilities [closed]
I recently found out that there are several vulnerabilities in the linux kernel that allow for privilge escalation, that have not been patched yet in the major distributions, and have public exploits ...
2
votes
4answers
1k views
My php site was hacked by codes uploaded as image..?
Yesterday my site was comprised. The attacker changes the index.php file to their own (with all their glory messages and greet). I've notified the hosting company about this (we are running on a ...
2
votes
3answers
503 views
how do widgets like “http://sharethis.com/” make what seem to be XSS calls
How is it that tools like this one can make an ajax style call back to a central site? basically they give you a " tag to put on your site where ever it is. So in this widget you have the ability to ...
2
votes
3answers
245 views
Can you find the web security issue here?
I have a webpage that redirects to another webpage like this:
http://www.myOtherServer.com/Sponsor.php?RedirectPage=http://mylink.com/whereIwasgoingtogo.html
Then the Sponsor.php page displays an ...
1
vote
0answers
32 views
Security: How come we still hear about many stack execution security flaws?
Security: How come we still hear about many stack execution security flaws even though mechanisms such as NX bit DEP and ASLR exist so many years ?
Have hackers found ways to circumvent these ?
When ...