2
votes
7answers
71 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 …
14
votes
2answers
128 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 …
1
vote
2answers
160 views
Can anyone de-obfuscate this exploit?
I came across the following exploit due to a warning from my AV software. It originated from an adserver delivering banner ads on one of my sites.
I have retrieved the content with Wget and copied to …
0
votes
3answers
95 views
printf executing .exe files in cygwin
so i had an assignment requiring me to 'break' a piece of vulnerable code. snippet:
int main(int argc, char **argv)
{
/*...*/
while(i < argc-1)
{
switch(argv[i][0]-48)
{
case …
0
votes
1answer
19 views
Are there security issues when dynamically loading external content into a page using jQuery?
I'm building a site and I would like to have external content dynamically loaded in a div using jQuery. The content could be a google search page, where one can navigate without actually leaving the …
1
vote
1answer
36 views
Protect IE6 from exploits when testing?
I wrote an app in C# which uses the webbrowser control. While using it, the site i happen to use it on had an ad that auto DLed and ran itself on my comp causing me to be very annoyed. According to …
0
votes
1answer
193 views
Heap Spray Internet Explorer 8 [closed]
Hi
I want to know, is there a way to spray IE8 heap?
I did my best but I was not able to spray IE 8 heap! I attached Olly to IE and I never see my data in Memory of IE.
How can I do that? I also …
6
votes
6answers
617 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 …
4
votes
2answers
290 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 …
1
vote
4answers
143 views
Risk of exploits “backwards” into outbound tcp connections.
I am building a server application that will maintain connections to other applications by initiating TCP connections out through a firewall that is only open for outbound traffic to the relevant IP's …
9
votes
8answers
814 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 …
3
votes
2answers
634 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 …
0
votes
4answers
278 views
How long should it take an average coder to understand a buffer overflow? [closed]
How long should it take an average coder (has used C/C++ but isn't an expert) to understand what a buffer overflow is, why its a bad thing, and how someone might use it to take control of the …
10
votes
5answers
509 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 …
5
votes
6answers
404 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 …
