This file contains 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
example.org. IN SOA ns1.example.org. ns2.example.org. ( | |
2012050901 ; serial | |
20m ; refresh (20 minutes) | |
2m ; retry (2 minutes) | |
1w ; expire (1 week) | |
1h ; minimum (1 hour) | |
) | |
NS ns1.example.org. | |
NS ns2.example.org. |
This file contains 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
colorscheme peachpuff | |
set autochdir | |
set autoindent | |
set guioptions-=m | |
set guioptions-=T | |
set cursorline | |
nmap <C-s> :w<Enter> | |
nmap <C-t> :tabnew | |
nmap <M-1> 1gt | |
nmap <M-2> 2gt |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
int print_help_and_exit(const char *progname) { | |
fprintf(stderr, "Usage: %s <options> <filename> [<bytes>]\n" | |
"Options:\n" | |
" -b <base_addr> Use <base_addr> as base (will be substracted from <addr>)\n" | |
" -r <addr> Read first 16 bytes at <addr>\n" | |
" -w <addr> Write <bytes> at <addr>\n", |
This file contains 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
from idaapi import * | |
def print_caller(): | |
return_addr = Dword(cpu.Esp) | |
call_addr = return_addr - 5 | |
current_function = GetFunctionName(cpu.Eip) | |
caller_function = GetFunctionName(call_addr) | |
print "%s(0x%08X): %s" % (caller_function, call_addr, current_function) |
This file contains 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 string, itertools, operator | |
def GetCString(ea, max_length = 32): | |
bytes = map(Byte, xrange(ea, ea + max_length + 1)) | |
if 0x00 not in bytes: raise ValueError("String terminator wasn't found") | |
chars = map(chr, itertools.takewhile(operator.truth, bytes)) | |
return string.join(chars, '') |
This file contains 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 -n | |
chomp; | |
next if !s/^\x20{0,3}\S+:\s*//; | |
my ($code, $listing) = split(/\s*\t\s*/, $_, 2); | |
$code =~ s/(^|\s)+/\\x/g; | |
$spaces = ' ' x (30 - length($code)); | |
print "\"$code\"$spaces// $listing\n"; |
This file contains 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
sub add_cronjob { | |
my ($spec) = @_; | |
local *getCmd = sub { | |
my @chunks = split(/\s+/, $_[0], 6); | |
return $chunks[5]; | |
}; | |
my $crontext_old = `crontab -l`; | |
my $existing = grep { getCmd($spec) eq getCmd($_) } split(/\n/, $crontext_old); |
This file contains 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 | |
# A Perl rewrittement of binutils timeout. | |
# Sometimes binutils timeout makes MPlayer hanging for unknown reasons. This version doesn't. | |
$SIG{ALRM} = sub { | |
# Give no mercy neither to the process itself nor to it's child | |
kill -9, $$; | |
}; | |
&print_usage() if !@ARGV; |
This file contains 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 scala.io.Source | |
val listOfLines = Source.fromFile("filename.txt").getLines.toList |
This file contains 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 | |
=pod | |
Ensures that the password matches against NTLM challenge & response. | |
Synopsis: | |
./src/curl --ntlm -uAdministrator:atomic http://192.168.56.101:/WebDav/ -v | |
WWW-Authenticate: NTLM TlRMTVNTUAACAAAABAAEADgAAAAGgokCv9L+7WR398wAAAAAAAAAAIYAhgA8AAAABQLODgAAAA9ETlMxAgAIAEQATgBTADEAAQAIAEQARQBMAEwABAAcAGQAbgBzADEALgBsAG8AYwBhAGwAaABvAHMAdAADACYAZABlAGwAbAAuAGQAbgBzADEALgBsAG8AYwBhAGwAaABvAHMAdAAFABwAZABuAHMAMQAuAGwAbwBjAGEAbABoAG8AcwB0AAAAAAA= | |
Authorization: NTLM TlRMTVNTUAADAAAAGAAYAEAAAAAYABgAWAAAAAAAAABwAAAADQANAHAAAAAEAAQAfQAAAAAAAAAAAAAABoKJAtF4FmQok6yvAAAAAAAAAAAAAAAAAAAAAD9xuQoSt6XlCNB3NXHcuv3CQLGP6YgYQUFkbWluaXN0cmF0b3Job21l | |
perl ntlm_check_passwd.pl TlRMTVNTUAACAAAABAAEADgAAAAGgokCv9L+7WR398wAAAAAAAAAAIYAhgA8AAAABQLODgAAAA9ETlMxAgAIAEQATgBTADEAAQAIAEQARQBMAEwABAAcAGQAbgBzADEALgBsAG8AYwBhAGwAaABvAHMAdAADACYAZABlAGwAbAAuAGQAbgBzADEALgBsAG8AYwBhAGwAaABvAHMAdAAFABwAZABuAHMAMQAuAGwAbwBjAGEAbABoAG8AcwB0AAAAAAA= TlRMTVNTUAADAAAAGAAYAEAAAAAYABgAWAAAAAAAAABwAAAADQANAHAAAAAEAAQAfQAAAAAAAAAAAAAABoKJA |