Tagged Questions
0
votes
0answers
35 views
Troubles overriding BP and return adress while exploiting program through buffer overflow
I'm following this exploit tutorial http://www.youtube.com/playlist?list=PL96AB65DFCE02EE3E, which teaches you to exploit applications by injecting assembly code in user input and overriding return ...
-2
votes
2answers
91 views
PHP injection. Explanation needed [closed]
I am trying to learn how to hack, and I was given a task based around php. I know that this code is the vulnerable part, but I don't know how to actually exploit it.
<form action="#" ...
0
votes
1answer
86 views
How to monitor which files are writting code to others?
It appears there is a new exploit/hack going around where a Wordpress plugin is writing a .js file before every closing </head> tags in every Wordpress installation's .php files on my server. ...
0
votes
2answers
92 views
Isnt Segmentation fault the same as the smashing the stack?
As a consequence of an programming error we get segmentation faults . But as a necessary tool we try the same thing but the kernel detects it as smashing the stack . How exactly does the kernel see ...
0
votes
1answer
138 views
The art of exploitation - exploit_notesearch.c
i've got a question regarding the exploit_notesearch program.
This program is only used to create a command string we finally call with the system() function to exploit the notesearch program that ...
0
votes
1answer
86 views
are there how-to articles, code review guidelines, manuals etc for finding vulnerabilities in php codebase?
I know "intuitively" how to spot the more obvious sorts of sql injection vulnerabilities. But, I am guessing that if I were given a large codebase with lots of different vulnerabilities (maybe Joomla ...
0
votes
1answer
57 views
what are the most common vulnerability types in well designed code bases like Joomla or vBulletin? could they be fixed by sanitization?
I know that in poorly made codebases sql injection and javascript injection were big issues. In properly designed codebase these should be fixable by only accepting form data through a sanitization ...
1
vote
0answers
197 views
Ls command hacked on a Linux machine. How to debug it? [closed]
A linux machine was hacked via web attack.
With an unknown 0-day, the attacker created a new root account manipulating the ls command, rewriting it.
Now I got the ls binary compromised and I'd like ...
3
votes
1answer
78 views
how do doctored image exploits for image viewers work? can they be defeated with managed code and random pixel alterations?
I have read that some image viewers were hacked by appropriately doctored images (in a format particularly suited for that? not sure about the details).
So, how could this threat be completely ...
0
votes
2answers
139 views
Shellcode Development , ESP pointer
Sometime back, working on an exploit for Easy RM to MP3 Converter 2.7.3.700 on Windows XP SP3 ( http://www.exploit-db.com/exploits/9177/ ) , I came across a concept which am not understanding , It ...
-6
votes
3answers
322 views
Can anyone explain this C program ? [closed]
Can anyone explain how this C program works especially the pointer variables? Explanation for C code is enough not necessary for SHELLCODE
NOTE: Guys I am new to C programming or pointers.I just dont ...
5
votes
1answer
850 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 ...
2
votes
1answer
413 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
3answers
320 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 ...
5
votes
2answers
270 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, ...
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 ...
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 ...