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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | |
<script src="FileSaver.min.js"></script> |
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 idautils | |
from idaapi import * | |
import re | |
sc = idautils.Strings() | |
packets = {} | |
for s in sc: | |
value = str(s) |
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
global _start | |
section .text: | |
_start: | |
call main | |
db 'Hello World', 00 | |
main: | |
xor rax, rax |
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
.text:00406FCF loc_406FCF: ; CODE XREF: sub_406E20+186j | |
.text:00406FCF lea eax, [ebp+NumberOfBytesWritten] | |
.text:00406FD2 push eax ; lpNumberOfBytesWritten | |
.text:00406FD3 push [ebp+dwSize] ; nSize | |
.text:00406FD6 push [ebp+lpBuffer] ; lpBuffer | |
.text:00406FD9 push esi ; lpBaseAddress | |
.text:00406FDA push ebx ; hProcess | |
.text:00406FDB call ds:WriteProcessMemory | |
.text:00406FE1 test eax, eax | |
.text:00406FE3 jnz short loc_40701C |
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
.text:00406FCF loc_406FCF: ; CODE XREF: sub_406E20+186j | |
.text:00406FCF lea eax, [ebp+NumberOfBytesWritten] | |
.text:00406FD2 push eax ; lpNumberOfBytesWritten | |
.text:00406FD3 push [ebp+dwSize] ; nSize | |
.text:00406FD6 push [ebp+lpBuffer] ; lpBuffer | |
.text:00406FD9 push esi ; lpBaseAddress | |
.text:00406FDA push ebx ; hProcess | |
.text:00406FDB call ds:WriteProcessMemory | |
.text:00406FE1 test eax, eax | |
.text:00406FE3 jnz short loc_40701C |
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
[ENABLE] | |
Alloc(StatChange,1024) | |
Alloc(_str,4) | |
Alloc(_dex,4) | |
Alloc(_int,4) | |
Alloc(_luk,4) | |
Alloc(_hp,4) | |
Alloc(_maxhp,4) | |
Alloc(_mp,4) | |
Alloc(_maxmp,4) |
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 socket | |
UDPSock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM) | |
listen_addr = ("", 3386) | |
UDPSock.bind(listen_addr) | |
ips = [] | |
while True: |
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
/* recursive subdivision of triangle to form Sierpinski gasket */ | |
/* number of recursive steps given on command line */ | |
#include<time.h> | |
#ifdef __APPLE__ | |
#include <GLUT/glut.h> | |
#else | |
#include <GL/glut.h> | |
#endif | |
/* initial triangle */ |
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
/* recursive subdivision of triangle to form Sierpinski gasket */ | |
/* number of recursive steps given on command line */ | |
#include<time.h> | |
#ifdef __APPLE__ | |
#include <GLUT/glut.h> | |
#else | |
#include <GL/glut.h> | |
#endif | |
/* initial triangle */ |
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 <iostream> | |
#include <iomanip> | |
using namespace std; | |
#include "SparseMatrix.h" | |
int compare( const int x, const int y ) | |
{ | |
if( x < y ) | |
return -1; | |
else if( x == y ) |
NewerOlder