0
votes
3answers
89 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 …
8
votes
8answers
775 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 bro …
0
votes
1answer
16 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 ac …
1
vote
1answer
34 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 anno …
6
votes
6answers
560 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 pr …
0
votes
1answer
166 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 …
2
votes
3answers
178 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.ph …
-2
votes
8answers
447 views
What is this Base64 Look-alike?
I am new to decoding techniques and have just learnt about base64, sha-1, md5 and a few others yesterday.
I have been trying to figure out what "orkut" worms actually contain.
…
27
votes
9answers
2k views
Help me understand this JavaScript exploit
Hi,
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 f …
4
votes
2answers
283 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 C …
1
vote
4answers
138 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 …
3
votes
2answers
622 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) …
2
votes
2answers
648 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 …
10
votes
5answers
486 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 progr …
0
votes
3answers
174 views
possible javascript exploits from exposed link?
On a page from a website (one of ours) I can enter in the url the following code:
javascript:createNewWindow('Something', 100, 100, 'Text')
Is there a way someone can exploit th …
