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
<style> | |
body | |
{ | |
min-width:300px; | |
overflow-x:hidden; | |
} | |
p | |
{ | |
border:#ddd thin solid; | |
background-color:#eee; |
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
global _start | |
_start: | |
jmp short getWinExec | |
callProc: | |
pop ebx | |
xor eax,eax | |
push eax | |
mov [ebx+40],al | |
push ebx | |
mov eax,0x7c8623ad ;WinExec |
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
char shellcode[] = "INSERT SHELLCODE HERE!"; | |
int main(int argc,char argv) | |
{ | |
int (*f)(); | |
f = (int (*)())shellcode; | |
(int)(*f)(); | |
} |
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
[SECTION .text] | |
global _start | |
_start: | |
jmp short getData | |
execIt: | |
pop ebx ;Get the string off stack | |
xor eax,eax ;Clear eax | |
mov [ebx+8],al ;This helps us to avoid having a zero byte in our code. | |
;It sets the terminator to the string. | |
push eax ;Second argument for WinExec |
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
#include "ListenElement.h" | |
class Liste | |
{ | |
public: | |
Liste() | |
{ | |
head = NULL; | |
size = 0; | |
} |
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
#include <cmath> | |
#include "ListenElement2.h" | |
class Liste | |
{ | |
public: | |
Liste() | |
{ | |
head = NULL; | |
tail = NULL; |
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
; | |
; Zeichnet 80 Pixel in einer gepunkteten Linie | |
; Die Linie besteht aus 10 Segmenten a 8 Pixeln. | |
; | |
#include "../ti83plus.inc" | |
.db $BB,$6D | |
.org 9D95h | |
.db t2ByteTok | |
ld a,10 ;Zähler | |
ld b,0 ;Koordinate |
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
#include "../ti83plus.inc" | |
.db $BB,$6D | |
.org 9D95h | |
.db t2ByteTok | |
ld hl,txtHello | |
bcall(_puts) | |
ret | |
txtHello: | |
.db "Hello TI",0 | |
.end |
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
<?php | |
class echoApplication extends App | |
{ | |
function run() | |
{ | |
parent::run(); | |
$data = $this->params; | |
$this->outputResults($data,$_GET['environment']); | |
} | |
} |
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
# gem sources -u | |
ERROR: http://gems.rubyforge.org/ does not appear to be a repository | |
ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError) | |
bad response Found 302 (http://gems.rubyforge.org/yaml) |
OlderNewer