This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
""" | |
Takes an absolute path and generates x86-32 shellcode for copying the file | |
at that location to /tmp/outfile | |
""" | |
if len(sys.argv) != 3: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.IO (hPutStrLn) | |
import XMonad | |
import XMonad.Actions.SpawnOn | |
import XMonad.Hooks.DynamicLog | |
import XMonad.Hooks.ManageDocks | |
import XMonad.Layout.NoBorders | |
import XMonad.Util.EZConfig(additionalKeys) | |
import XMonad.Util.Run(spawnPipe) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use Getopt::Long; | |
#Parse flags using Getopt::Long. | |
my $desc = ''; | |
my $public = 0; | |
my $user = ''; | |
my $verbose = 0; | |
GetOptions ('desc:s' => \$desc, | |
'public' => \$public, |