aaa
- item1
- item2
>>> from xorencdec import xorencdec | |
>>> xorencdec('creature_creature_creature',']VTYJQC]aGC]_PDJ[{RJ[EEMLA') | |
'>$18>$18>$18>$18>$18>$18>$' | |
>>> xorencdec('Smith','>$18') | |
'mIXLV' | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <curl/curl.h> | |
char *g_data; | |
size_t g_size; | |
size_t savedata(void *ptr, size_t size, size_t nmemb, void *stream) | |
{ |
How computers work | |
================== | |
Most people on the planet directly interact with computers on a daily | |
basis. They may be fooling around on their cell phone, writing a paper | |
for their homework, or playing video games. Despite the ubiquity | |
of digital computing devices, there is an astonishingly small number of | |
people who are familiar with the inner workings of these devices. Not | |
only that, but due to the fact most people think of computers in |
#!/usr/bin/env python | |
"""htl_extract.py, Extracts the embedded source code from Cisco Security Agent Management Console. | |
Gerry <[email protected]> | |
""" | |
import os | |
import sys | |
import struct | |
import pefile | |
from itertools import takewhile |
Windowsで使ってるソフトウェアメモ | |
Webブラウザ | |
Firefox | |
使ってるAddon | |
AutoPagerize | |
自動でページ継ぎ足し | |
Navigational Sounds | |
右クリックしたときに音でるようにするやつ | |
Secure Login |
<div style="text-align:center;"> | |
<p> | |
The idiot who wrote this form's handler pretty much sucks. There's a few reasons why. | |
</p> | |
<form method="post" action=""> | |
<label for="ext">Username:</label><br /> | |
<input type="text" name="username" class="textbox" value="" /><br /><br /> | |
<label for="password">Password:</label><br /> | |
<input type="text" name="password" class="textbox" value="" /><br /><br /> |
http://code.google.com/p/paimei/ - As of r253 | |
- You need pydasm, it is included in the libdasm package. v1.5 is fine, you don't want to fight with the bugs of the unstable version - http://code.google.com/p/libdasm/ | |
- PyDasm will cry about MSVC scripts but you don't need those. Install MinGW (with C++ support?) - http://www.mingw.org/ | |
- Add MinGw's bin directory to your path or else it won't find gcc | |
- Remove the -mno-cygwin parameters from pythonXX\lib\distutils\cygwinccompiler.py, remove the .pyc to recompile | |
- setup.py build_ext --compiler=mingw32 | |
- setup.py install may fail. Install the lib by copying the .pyd file from the build directory to PythonXX\Lib\site-packages | |
- You don't need PaiMei's dependencies to use PyDbg, just simply build and install with setup.py | |
- Remove the bundled pydasm.pyd from the PaiMei package |
#include <stdio.h> | |
#include <stdlib.h> | |
int main (int argc, char * argv[]) { | |
int filesize; | |
int i; | |
unsigned char byte; | |
char string[41]; |
<?php | |
/* | |
* XSS filter, recursively handles HTML tags & UTF encoding | |
* Optionally handles base64 encoding | |
* | |
* ***DEPRECATION RECOMMENDED*** Not updated or maintained since 2011 | |
* A MAINTAINED & BETTER ALTERNATIVE => kses | |
* https://github.com/RichardVasquez/kses/ | |
* | |
* This was built from numerous sources |