como instalar o adaptador wi-fi D-LINK DWA-182
sudo apt-get update
sudo apt-get install linux-headers-generic build-essential git
<?php | |
// This file walks you through the most common features of PHP's SQLite3 API. | |
// The code is runnable in its entirety and results in an `analytics.sqlite` file. | |
// Create a new database, if the file doesn't exist and open it for reading/writing. | |
// The extension of the file is arbitrary. | |
$db = new SQLite3('analytics.sqlite', SQLITE3_OPEN_CREATE | SQLITE3_OPEN_READWRITE); | |
<?php | |
// See the corresponding blog entries (in Polish): | |
// http://spiechu.pl/2012/05/16/tworzenie-pakietow-icmp-w-php | |
// http://spiechu.pl/2012/05/26/w-miare-bezpieczne-uruchamianie-skryptow-php-poprzez-shell_exec | |
class ICMPPing | |
{ | |
const TYPE_REQUEST = 0x08; | |
const TYPE_RESPONSE = 0x00; |
************General Scripts | |
--tamper=apostrophemask,apostrophenullencode,base64encode,between,chardoubleencode,charencode,charunicodeencode,equaltolike,greatest,ifnull2ifisnull,multiplespaces,nonrecursivereplacement,percentage,randomcase,securesphere,space2comment,space2plus,space2randomblank,unionalltounion,unmagicquotes | |
apostrophemask | |
Replaces apostrophe character with its UTF-8 full width counterpart | |
apostrophenullencode | |
Replaces apostrophe character with its illegal double unicode counterpart | |
base64encode |
#define SECURITY_WIN32 //Define First Before Imports. | |
#include <windows.h> | |
#include <stdio.h> | |
#include <Sspi.h> //Be sure to reference secur32.lib in Linker | Input | Additional Dependencies | |
FARPROC fpEncryptMessage; //Pointer To The Original Location | |
BYTE bSavedByte; //Saved Byte Overwritten by 0xCC - |
#!/usr/bin/env bash | |
curl -k -O http://download.slimerjs.org/v0.9/0.9.0/slimerjs-0.9.0-linux-x86_64.tar.bz2 | |
tar -xjpvf slimerjs-0.9.0-linux-x86_64.tar.bz2 | |
rm slimerjs-0.9.0-linux-x86_64.tar.bz2 | |
mv slimerjs-0.9.0 slimerjs | |
echo "console.log('SlimerJS installed OK'); slimer.exit();" > test.js | |
slimerjs/slimerjs test.js |