User Sec - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T05:49:19Zhttp://stackoverflow.com/feeds/user/20555http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1710285/send-file-image-through-socket-perl/1710503#17105031Answer by Sec for Send file (image) through socket perlSec2009-11-10T19:21:56Z2009-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#17101190Answer by Sec for freebsd: current dir of running process by process idSec2009-11-10T18:24:51Z2009-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" && 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#17098342Answer by Sec for What kind of data can you extract from a UUID?Sec2009-11-10T17:45:24Z2009-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)&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-decompiler9What's a good C decompiler?Sec2008-10-11T09:35:21Z2009-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-windows5How to statically compile an SDL game on WindowsSec2008-09-22T16:13:53Z2009-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#1619855Answer by Sec for Hidden features of Perl?Sec2008-10-02T12:21:46Z2009-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-client5Commandline Jabber clientSec2008-10-04T15:21:55Z2009-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#5759880Answer by Sec for Force a Samba process to close a fileSec2009-02-22T22:41:33Z2009-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&id=5#article" rel="nofollow">http://www.phrack.org/issues.html?issue=51&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#5753965Answer by Sec for cygwin ssh no putty yes?Sec2009-02-22T18:27:29Z2009-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-work3Why doesn't my Perl curses window work?Sec2008-12-27T10:35:31Z2008-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->addstr(20,20,"Hello");
$w->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#1979740Answer by Sec for How can I determine for which platform an executable is compiled?Sec2008-10-13T15:23:16Z2008-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#1979566Answer by Sec for What's the best way to clear the screen in Perl?Sec2008-10-13T15:17:45Z2008-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->clear()'
</code></pre>
http://stackoverflow.com/questions/48211/free-python-decompiler-that-is-not-an-online-service/194063#1940635Answer by Sec for Free python decompiler that is not an online service?Sec2008-10-11T13:16:36Z2008-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#16208511Answer by Sec for Hidden features of Perl?Sec2008-10-02T12:48:32Z2008-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($_ = <ARGV>)) {
print $_; }{ print "$. Files";
}
</code></pre>
http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/182358#1823580Answer by Sec for Company insists on using a binary format for all our documentationSec2008-10-08T11:58:21Z2008-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#1823262Answer by Sec for Best way to simulate a WAN networkSec2008-10-08T11:49:08Z2008-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#1794460Answer by Sec for What content encoding does a Perl CGI script use by default?Sec2008-10-07T17:06:27Z2008-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#1795839Answer by Sec for Does CLI mean anything other than "command line interface"?Sec2008-10-07T17:42:29Z2008-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#1794083Answer by Sec for Clearing all cookies with javascriptSec2008-10-07T16:54:27Z2008-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#1793451Answer by Sec for Setting up pipelines reading from named pipes without blocking in bashSec2008-10-07T16:39:20Z2008-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 </tmp/foobar.in ) >/tmp/foobar.out &
some_program --command-fd=5 5</tmp/foobar.out
</code></pre>
<p>perhaps this helps :-)</p>
http://stackoverflow.com/questions/179405/explain-this-modrewrite-rule/179413#1794132Answer by Sec for Explain this mod_rewrite ruleSec2008-10-07T16:56:08Z2008-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#1793753Answer by Sec for How do I abort the execution of a Python script?Sec2008-10-07T16:48:19Z2008-10-07T16:48:19Z<p>exit() should do the trick</p>
http://stackoverflow.com/questions/179299/how-do-shell-text-editors-work/179307#1793075Answer by Sec for How do shell text editors work?Sec2008-10-07T16:29:29Z2008-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#1705643Answer by Sec for Commandline Jabber clientSec2008-10-04T16:00:24Z2008-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 = "<pw>";
my $resource = "autosend";
my @recipients = @ARGV;
my $clnt = new Net::Jabber::Client;
my $status = $clnt->Connect(hostname=>$server, port=>$port);
if (!defined($status)) {
die "Jabber connect error ($!)\n";
}
my @result = $clnt->AuthSend(username=>$username,
password=>$password,
resource=>$resource);
if ($result[0] ne "ok") {
die "Jabber auth error: @result\n";
}
my $body = '';
while (<STDIN>) {
$body .= $_;
}
chomp($body);
foreach my $to (@recipients) {
$clnt->MessageSend(to=>$to,
subject=>"",
body=>$body,
type=>"chat",
priority=>10);
}
$clnt->Disconnect();
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/162060#1620605Answer by Sec for Hidden features of Perl?Sec2008-10-02T12:42:14Z2008-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#16194312Answer by Sec for Hidden features of Perl?Sec2008-10-02T12:09:33Z2008-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 <=> 7; # $a is set to -1
$a = 7 <=> 5; # $a is set to 1
$a = 6 <=> 6; # $a is set to 0
</code></pre>
http://stackoverflow.com/questions/161879/parenthesis-surrounding-return-values/161926#1619260Answer by Sec for Parenthesis surrounding return valuesSec2008-10-02T12:04:07Z2008-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#1618921Answer by Sec for Home/End keys in zsh don't work with puttySec2008-10-02T11:55:42Z2008-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#1490813Answer by Sec for How To Removing Trailing Whitespace Of All Files Recursively?Sec2008-09-29T15:07:26Z2008-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#1490592Answer by Sec for Archiving VMware images on ESXiSec2008-09-29T15:02:19Z2008-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-windowsComment by Sec on How to statically compile an SDL game on WindowsSec2009-02-22T18:23:31Z2009-02-22T18:23:31Zsdl --static-libs returns:
"-L/usr/local/lib -lmingw32 -lSDLmain -lSDL -mno-cygwin -mwindows"
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#525124Comment by Sec on How to statically compile an SDL game on WindowsSec2009-02-10T12:54:35Z2009-02-10T12:54:35ZI'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 "undefined reference" 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#182358Comment by Sec on Company insists on using a binary format for all our documentationSec2008-10-11T13:20:35Z2008-10-11T13:20:35ZI think it first appeared with office 2003, but I am not 100% sure.http://stackoverflow.com/questions/193896/whats-a-good-c-decompilerComment by Sec on What's a good C decompiler?Sec2008-10-11T13:19:13Z2008-10-11T13:19:13ZI 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#179446Comment by Sec on What content encoding does a Perl CGI script use by default?Sec2008-10-07T17:13:01Z2008-10-07T17:13:01Zthe 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#179345Comment by Sec on Setting up pipelines reading from named pipes without blocking in bashSec2008-10-07T17:01:58Z2008-10-07T17:01:58Zyou'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#179375Comment by Sec on How do I abort the execution of a Python script?Sec2008-10-07T16:50:06Z2008-10-07T16:50:06ZAnd I even tested it in a shell first :-)http://stackoverflow.com/questions/161872/hidden-features-of-perl/161976#161976Comment by Sec on Hidden features of Perl?Sec2008-10-02T12:36:47Z2008-10-02T12:36:47Zperl 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#153895Comment by Sec on Printing leading 0's in C?Sec2008-09-30T16:57:46Z2008-09-30T16:57:46ZPlease do not store zipcodes as numbers. Some countries have letters in their zipcode.