User Sec - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:49:19Z http://stackoverflow.com/feeds/user/20555 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1710285/send-file-image-through-socket-perl/1710503#1710503 1 Answer by Sec for Send file (image) through socket perl Sec 2009-11-10T19:21:56Z 2009-11-10T19:21:56Z <p>If you are "talking to the browser", you probably need to speak HTTP? If so, you need to send the correct Headers (e.g Content-Type: image//jpeg) before sending the raw image data.</p> http://stackoverflow.com/questions/1158435/freebsd-current-dir-of-running-process-by-process-id/1710119#1710119 0 Answer by Sec for freebsd: current dir of running process by process id Sec 2009-11-10T18:24:51Z 2009-11-10T18:24:51Z <p>fstat can find the inode number and filesystem, and find can find the correct directory.</p> <p>Try this:</p> <pre><code>fstat -p $$|perl -ane '$F[3] eq "wd" &amp;&amp; system("find",$F[4],"-xdev","-inum",$F[5],"-print");' </code></pre> <p>When run as non-root, find will probably output quite a few "Permission denied" messages which can be avoided by inserting <code>close(STDERR);</code> in front of the <code>$F[3]</code> (after the first single quote).</p> http://stackoverflow.com/questions/1709600/what-kind-of-data-can-you-extract-from-a-uuid/1709834#1709834 2 Answer by Sec for What kind of data can you extract from a UUID? Sec 2009-11-10T17:45:24Z 2009-11-10T17:55:38Z <p>A standard-conforming UUID may be one of several variants, it looks like this:</p> <p>AAAAAAAA-BBBB-CCCC-DDDD-FFFFFFFFFFFF</p> <p>The first (hex)digit of the DDDD part determines the variant.</p> <p>If it is one of 8,9,A,B it is conforming to the current spec (0-7 are reserved for backward compatibility, C,D are reserved for Microsoft, and E,F are reserved for future use)</p> <p>If it conforms to the current spec, check the first digit of the CCCC part which determines the UUID version:</p> <ol> <li>Time-based with unique or random host identifier (MAC)</li> <li>DCE Security version (with POSIX UIDs)</li> <li>Name-based (MD5 hash)</li> <li>Random</li> <li>Name-based (SHA-1 hash)</li> </ol> <p>Version 4 is simply randomly chosen.</p> <p>Version 3 and 5 are generated by hashing and throwing away some bits which means you have basically no chance in recovering any information from it. Details on how to build it can be found in <a href="http://www.ietf.org/rfc/rfc4122.txt" rel="nofollow">RFC4122</a> or at the <a href="http://www.famkruithof.net/guid-uuid-namebased.html" rel="nofollow">UUID Generator webpage</a>.</p> <p>I could not find any version 2 UUIDs so I didn't check how to extract the data.</p> <p>Version 1 is generated from a time-stamp and current host MAC address. (The standard also allows to use a random address instead if you set the "broadcast/multicast" bit of the MAC address.)</p> <p>The following perl snipped parses the MAC address and Time from a version 1 uuid:</p> <pre><code> my $uuid="AAAAAAAA-BBBB-CCCC-DDDD-FFFFFFFFFFFF"; $uuid=~tr/-//; my $time_low=hex substr($uuid,2* 0,2*4); my $time_mid=hex substr($uuid,2* 4,2*2); my $version =hex substr($uuid,2* 6,1); my $time_hi =hex substr($uuid,2* 6+1,2*2-1); my $time=($time_hi*(2**16)+$time_mid)*(2**32)+$time_low; my $epoc=int($time /10000000) - 12219292800; my $nano=$time-int($time/10000000)*10000000; my $clk_hi =hex substr($uuid,2* 8,2*1); my $clk_lo =hex substr($uuid,2* 9,2*1); my $node =substr($uuid,2*10,2*6); $node=~/^(..)(..)(..)(..)(..)(..)$/ || die; $node="$1:$2:$3:$4:$5:$6"; print "time: ",scalar localtime $epoc," +",$nano/10000,"ms\n"; print "clock id: ",$clk_hi*256+$clk_lo,"\n"; print "Mac: $node\n"; my $byte=hex $1; if(hex($1)&amp;1){ print "broadcast/multicast bit set.\n"; }; </code></pre> <p>And last but not least, there are several assigned UUIDs, for example for <a href="http://en.wikipedia.org/wiki/GUID%5FPartition%5FTable" rel="nofollow">GPT partitions</a>.</p> http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler 9 What's a good C decompiler? Sec 2008-10-11T09:35:21Z 2009-10-23T12:03:05Z <p>I am searching for a decompiler for a C program. The binary is a 32-bit Linux executable. Objdump works fine, so basically I am searching for something which attempts to reconstruct the C source from the asm source.</p> http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows 5 How to statically compile an SDL game on Windows Sec 2008-09-22T16:13:53Z 2009-09-12T23:20:14Z <p>I have been trying to produce a statically linked "single binary" version of my game for windows. I want to link with sdl, sdl_image and sdl_mixer which in turn pull in a few support libraries. Unfortunately I haven't found a way to get them all to compile and link using cygwin/mingw/gcc. As far as I can tell all existing public versions are only shared libraries / dlls.</p> <p>Please note that I'm not talking about licencing here. The source will be open thus the GPL/LGPLness of sdl is not relevant.</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/161985#161985 5 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:21:46Z 2009-08-23T22:00:50Z <p>There also is $[ the variable which decides at which index an array starts. Default is 0 so an array is starting at 0. By setting </p> <pre><code>$[=1; </code></pre> <p>You can make Perl behave more like <a href="http://en.wikipedia.org/wiki/AWK" rel="nofollow">AWK</a> (or Fortran) if you really want to.</p> http://stackoverflow.com/questions/170503/commandline-jabber-client 5 Commandline Jabber client Sec 2008-10-04T15:21:55Z 2009-08-07T19:39:12Z <p>I need a simple scriptable/commandline jabber client. What is the best and/or simplest one to install?</p> <p>Clarificarion: I'm looking for a simple way to send messages from within a script.</p> http://stackoverflow.com/questions/142007/force-a-samba-process-to-close-a-file/575988#575988 0 Answer by Sec for Force a Samba process to close a file Sec 2009-02-22T22:41:33Z 2009-02-22T22:41:33Z <p>Generally speaking, you can't meddle with a process file descriptors from the outside. Yet as root you can of course do that as you seen in that phrack article from 1997: <a href="http://www.phrack.org/issues.html?issue=51&amp;id=5#article" rel="nofollow">http://www.phrack.org/issues.html?issue=51&amp;id=5#article</a> - I wouldn't recommend doing that on a production system though...</p> http://stackoverflow.com/questions/575157/cygwin-ssh-no-putty-yes/575396#575396 5 Answer by Sec for cygwin ssh no putty yes? Sec 2009-02-22T18:27:29Z 2009-02-22T18:27:29Z <p>You need to get "puttygen.exe" from the putty webpage <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" rel="nofollow">http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html</a> to convert your key to the OpenSSH format. Then it should just work.</p> http://stackoverflow.com/questions/394873/why-doesnt-my-perl-curses-window-work 3 Why doesn't my Perl curses window work? Sec 2008-12-27T10:35:31Z 2008-12-29T00:52:46Z <p>This might be a problem with my understanding with Curses more than with Perl, but please help me out. I'm using Curses.pm which works quite well except when I try to create a curses "window". Example code:</p> <pre><code>use Curses; initscr; $w=newwin(1,1,40,40); $w-&gt;addstr(20,20,"Hello"); $w-&gt;refresh; refresh; endwin; </code></pre> <p>outputs nothing. Not using a window works fine:</p> <pre><code>use Curses; initscr; $w=newwin(1,1,40,40); addstr(20,20,"Hello"); refresh; endwin; </code></pre> http://stackoverflow.com/questions/197951/how-can-i-determine-for-which-platform-an-executable-is-compiled/197974#197974 0 Answer by Sec for How can I determine for which platform an executable is compiled? Sec 2008-10-13T15:23:16Z 2008-10-13T15:23:16Z <p>Unix OS have a utility called "file" which identifies files. The rules for identifying are kept in a description file called "magic". You could try file to see if it is able to identify your files correctly and grab the appropriate rules out of the magic file.</p> http://stackoverflow.com/questions/197933/whats-the-best-way-to-clear-the-screen-in-perl/197956#197956 6 Answer by Sec for What's the best way to clear the screen in Perl? Sec 2008-10-13T15:17:45Z 2008-10-13T15:17:45Z <p>If you are talking about a terminal, I would use something like the Curses lib to do it.</p> <p>There is a nice Curses module to access it, which you can use like this:</p> <pre><code>perl -MCurses -e '$win=new Curses;$win-&gt;clear()' </code></pre> http://stackoverflow.com/questions/48211/free-python-decompiler-that-is-not-an-online-service/194063#194063 5 Answer by Sec for Free python decompiler that is not an online service? Sec 2008-10-11T13:16:36Z 2008-10-11T13:16:36Z <p>As others said, the free version of decompyle only works up to 2.3. But sometimes you can get it to work by converting your newer pyc to the old marshalling format.</p> <p>The following script takes two arguments, the input and the output file, and converts it into something which decompyle will at least try its teeth on.</p> <pre><code>#!/usr/bin/python import marshal import sys MAGIC23 = ';\xf2\r\n' def load_pyc(filename): f = open(filename, 'rb') try: magic = f.read(4) timestamp = f.read(4) codeobject = marshal.load(f) finally: f.close() return magic, timestamp, codeobject def dump_pyc_23(filename, timestamp, codeobject): assert len(timestamp)==4 f = open(filename, 'wb') try: f.write(MAGIC23) f.write(timestamp) marshal.dump(codeobject, f, 0) finally: f.close() magic, timestamp, codeobject = load_pyc(sys.argv[1]) dump_pyc_23(sys.argv[2], timestamp, codeobject) </code></pre> <p>Good Luck!</p> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162085#162085 11 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:48:32Z 2008-10-09T13:44:22Z <p>Based on the way the <code>"-n"</code> and <code>"-p"</code> switches are implemented in Perl 5, you can write a seemingly incorrect program including <code>}{</code>:</p> <pre><code>ls |perl -lne 'print $_; }{ print "$. Files"' </code></pre> <p>which is converted internally to this code:</p> <pre><code>LINE: while (defined($_ = &lt;ARGV&gt;)) { print $_; }{ print "$. Files"; } </code></pre> http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/182358#182358 0 Answer by Sec for Company insists on using a binary format for all our documentation Sec 2008-10-08T11:58:21Z 2008-10-08T11:58:21Z <p>Not to defend MS products here, but MS word can diff documents.</p> http://stackoverflow.com/questions/182077/best-way-to-simulate-a-wan-network/182326#182326 2 Answer by Sec for Best way to simulate a WAN network Sec 2008-10-08T11:49:08Z 2008-10-08T11:49:08Z <p>FreeBSDs ipfw has provisions to simulate links with a given bandwith, latency or error rate. You could use that FreeBSD machine as your machine "in the middle" in your above setup.</p> <p>You probably can also run at least one of the endpoints on the same machine if you want to reduce the amount of servers involved.</p> http://stackoverflow.com/questions/179441/what-content-encoding-does-a-perl-cgi-script-use-by-default/179446#179446 0 Answer by Sec for What content encoding does a Perl CGI script use by default? Sec 2008-10-07T17:06:27Z 2008-10-08T06:30:40Z <p>If the browser reports the content as iso-8859-1, maybe your Perl script didn't output the correct headers to specify the charset?</p> http://stackoverflow.com/questions/179559/does-cli-mean-anything-other-than-command-line-interface/179583#179583 9 Answer by Sec for Does CLI mean anything other than "command line interface"? Sec 2008-10-07T17:42:29Z 2008-10-07T17:51:40Z <p>The Wikipedia lists several meanings of CLI:</p> <blockquote> <ul> <li>Command line interface (computer tech interaction)</li> <li>Command line interpreter (command line shell)</li> <li>Call Level Interface (an SQL database management API)</li> <li>Common Language Infrastructure (a Microsoft .NET Framework specification)</li> <li>CLI (x86 instruction)</li> </ul> </blockquote> http://stackoverflow.com/questions/179355/clearing-all-cookies-with-javascript/179408#179408 3 Answer by Sec for Clearing all cookies with javascript Sec 2008-10-07T16:54:27Z 2008-10-07T17:04:05Z <p>You can get a list by looking into the document.cookie variable. Clearing them all is just a matter of looping over all of them and clearing them one by one.</p> http://stackoverflow.com/questions/179291/setting-up-pipelines-reading-from-named-pipes-without-blocking-in-bash/179345#179345 1 Answer by Sec for Setting up pipelines reading from named pipes without blocking in bash Sec 2008-10-07T16:39:20Z 2008-10-07T17:02:11Z <p>The only way I know getting this kind of result is a hack:</p> <pre><code>mkfifo /tmp/foobar.in mkfifo /tmp/foobar.out ( cat &lt;/tmp/foobar.in ) &gt;/tmp/foobar.out &amp; some_program --command-fd=5 5&lt;/tmp/foobar.out </code></pre> <p>perhaps this helps :-)</p> http://stackoverflow.com/questions/179405/explain-this-modrewrite-rule/179413#179413 2 Answer by Sec for Explain this mod_rewrite rule Sec 2008-10-07T16:56:08Z 2008-10-07T16:56:08Z <p>If the URL does not start with index.php or images or css or js or robots.txt, the string "/index.php/" is prefixed.</p> <p>As index.php is probably an executable php app, the index.php then can read the rest of the URL from its cgi environment. (it is stored in ${PATH_INFO})</p> http://stackoverflow.com/questions/179369/how-do-i-abort-the-execution-of-a-python-script/179375#179375 3 Answer by Sec for How do I abort the execution of a Python script? Sec 2008-10-07T16:48:19Z 2008-10-07T16:48:19Z <p>exit() should do the trick</p> http://stackoverflow.com/questions/179299/how-do-shell-text-editors-work/179307#179307 5 Answer by Sec for How do shell text editors work? Sec 2008-10-07T16:29:29Z 2008-10-07T16:29:29Z <p>Short answer: there are libraries for it (like curses, slang).</p> <p>Longer answer: doing things like jumping around with the cursor or changing colors are done by printing special character sequences (called escape-secquences, because they start with the ESC character).</p> http://stackoverflow.com/questions/170503/commandline-jabber-client/170564#170564 3 Answer by Sec for Commandline Jabber client Sec 2008-10-04T16:00:24Z 2008-10-04T16:00:24Z <p>Using the <strong>Net::Jabber</strong> perl module, I wrote the following script which sends the message from stdin to all the users listed on the command line.</p> <pre><code>#!/usr/local/bin/perl use Net::Jabber qw(Client); my $server = "jabber.de"; my $port = "5222"; my $username = "Sec"; my $password = "&lt;pw&gt;"; my $resource = "autosend"; my @recipients = @ARGV; my $clnt = new Net::Jabber::Client; my $status = $clnt-&gt;Connect(hostname=&gt;$server, port=&gt;$port); if (!defined($status)) { die "Jabber connect error ($!)\n"; } my @result = $clnt-&gt;AuthSend(username=&gt;$username, password=&gt;$password, resource=&gt;$resource); if ($result[0] ne "ok") { die "Jabber auth error: @result\n"; } my $body = ''; while (&lt;STDIN&gt;) { $body .= $_; } chomp($body); foreach my $to (@recipients) { $clnt-&gt;MessageSend(to=&gt;$to, subject=&gt;"", body=&gt;$body, type=&gt;"chat", priority=&gt;10); } $clnt-&gt;Disconnect(); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162060#162060 5 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:42:14Z 2008-10-02T12:42:14Z <p>A bit obscure is the tilde-tilde "operator" which forces scalar context.</p> <pre><code>print ~~ localtime; </code></pre> <p>is the same as</p> <pre><code>print scalar localtime; </code></pre> <p>and different from</p> <pre><code>print localtime; </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/161943#161943 12 Answer by Sec for Hidden features of Perl? Sec 2008-10-02T12:09:33Z 2008-10-02T12:09:33Z <p>Let's start easy with the <a href="http://en.wikipedia.org/wiki/Spaceship_operator" rel="nofollow">Spaceship Operator</a>.</p> <pre><code>$a = 5 &lt;=&gt; 7; # $a is set to -1 $a = 7 &lt;=&gt; 5; # $a is set to 1 $a = 6 &lt;=&gt; 6; # $a is set to 0 </code></pre> http://stackoverflow.com/questions/161879/parenthesis-surrounding-return-values/161926#161926 0 Answer by Sec for Parenthesis surrounding return values Sec 2008-10-02T12:04:07Z 2008-10-02T12:04:07Z <p>Perhaps this is because with parenthesis it is looking more like a function call, i.e. looking more like the rest of the code?</p> <p>Or its just something everybody does, just because everybody else does it :-)</p> http://stackoverflow.com/questions/161676/home-end-keys-in-zsh-dont-work-with-putty/161892#161892 1 Answer by Sec for Home/End keys in zsh don't work with putty Sec 2008-10-02T11:55:42Z 2008-10-02T11:55:42Z <p>These bindings simply don't appear to be part of the default bindings set in emacs mode.</p> <p>executing "where-is beginning-of-line" on my default zsh installation after running "bindkey -e" shows it is only bound to ^a. Perhaps you should ask the zsh developers why :-)</p> http://stackoverflow.com/questions/149057/how-to-removing-trailing-whitespace-of-all-files-recursively/149081#149081 3 Answer by Sec for How To Removing Trailing Whitespace Of All Files Recursively? Sec 2008-09-29T15:07:26Z 2008-09-29T15:07:26Z <p>Use:</p> <pre><code>find . -print0 |xargs -0 perl -pi.bak 's/ +$//' </code></pre> <p>if you don't want the ".bak" files generated:</p> <pre><code>find . -print0 |xargs -0 perl -pi 's/ +$//' </code></pre> <p>as a zsh user, you can omit the call to find, and instead use:</p> <pre><code>perl -pi 's/ +$//' **/* </code></pre> http://stackoverflow.com/questions/148999/archiving-vmware-images-on-esxi/149059#149059 2 Answer by Sec for Archiving VMware images on ESXi Sec 2008-09-29T15:02:19Z 2008-09-29T15:02:19Z <p>What is wrong with simply using your faviourite archiver/compressor utility?</p> http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows Comment by Sec on How to statically compile an SDL game on Windows Sec 2009-02-22T18:23:31Z 2009-02-22T18:23:31Z sdl --static-libs returns: &quot;-L/usr/local/lib -lmingw32 -lSDLmain -lSDL -mno-cygwin -mwindows&quot; which looks correct to me. Any other info I can give you? http://stackoverflow.com/questions/115813/how-to-statically-compile-an-sdl-game-on-windows/525124#525124 Comment by Sec on How to statically compile an SDL game on Windows Sec 2009-02-10T12:54:35Z 2009-02-10T12:54:35Z I'm marking this as the answer because it seems like the best Answer. Yet I still can't get it to work as I'm getting loads of &quot;undefined reference&quot; to functions like _waveOutOpen@24 or _timeGetTime@0. http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/182358#182358 Comment by Sec on Company insists on using a binary format for all our documentation Sec 2008-10-11T13:20:35Z 2008-10-11T13:20:35Z I think it first appeared with office 2003, but I am not 100% sure. http://stackoverflow.com/questions/193896/whats-a-good-c-decompiler Comment by Sec on What's a good C decompiler? Sec 2008-10-11T13:19:13Z 2008-10-11T13:19:13Z I am talking about 32bit x86 here. Sorry for the inaccuracy. http://stackoverflow.com/questions/179441/what-content-encoding-does-a-perl-cgi-script-use-by-default/179446#179446 Comment by Sec on What content encoding does a Perl CGI script use by default? Sec 2008-10-07T17:13:01Z 2008-10-07T17:13:01Z the browser assumes the charset in the http header is correct, so if you want to output utf-8 you should also specify utf-8. http://stackoverflow.com/questions/179291/setting-up-pipelines-reading-from-named-pipes-without-blocking-in-bash/179345#179345 Comment by Sec on Setting up pipelines reading from named pipes without blocking in bash Sec 2008-10-07T17:01:58Z 2008-10-07T17:01:58Z you're right it was a typo. just edited it. And yes the background process is ugly, this is why I called it a hack :) http://stackoverflow.com/questions/179369/how-do-i-abort-the-execution-of-a-python-script/179375#179375 Comment by Sec on How do I abort the execution of a Python script? Sec 2008-10-07T16:50:06Z 2008-10-07T16:50:06Z And I even tested it in a shell first :-) http://stackoverflow.com/questions/161872/hidden-features-of-perl/161976#161976 Comment by Sec on Hidden features of Perl? Sec 2008-10-02T12:36:47Z 2008-10-02T12:36:47Z perl invented so many regexp extensions that other programs now often use pcre (perl compatible regex) instead of the original regex language. http://stackoverflow.com/questions/153890/printing-leading-0s-in-c/153895#153895 Comment by Sec on Printing leading 0's in C? Sec 2008-09-30T16:57:46Z 2008-09-30T16:57:46Z Please do not store zipcodes as numbers. Some countries have letters in their zipcode.