摘要: 网上说用 ap-hotspot可以,但是我测试的时候总是在start的时候卡主,试了以前的版本也是,最后找到了下面的方法。 第一步:安装 plasma-nm 可以使用下面的命令 sudo apt-get install plasma-nm 第二步:启动程序 可以使用 Alt+F2 后,搜索 kde- 阅读全文
posted @ 2016-02-23 22:52 Myths 阅读(12947) 评论(1) 推荐(1) 编辑
摘要: <html><head><title></title><meta http-equiv=Content-Type content="text/html;charset=utf-8"><style type = "text/css"> #demo img { width:90px;height:90px; border:5px solid #f4f4f4; } #enlarge_img { position:absolute; display:none; z-index:999; b. 阅读全文
posted @ 2013-03-18 13:24 Myths 阅读(204) 评论(0) 推荐(0) 编辑
摘要: <html><head><meta http-equiv=Content-Type content="text/html;charset=utf-8"><title></title></head><body><div id="Ad" style="position:absolute"><a href="http://www.cnblogs.com/co1d7urt" target="_blank" 阅读全文
posted @ 2013-03-16 16:08 Myths 阅读(286) 评论(0) 推荐(0) 编辑
摘要: <html><head><title></title><meta http-equiv=Content-Type content="text/html;charset=utf-8"></head><body onload="setInterval(trim,200)" bgcolor="black"><p id="exp" style="font-family:黑体;color:blue;">< 阅读全文
posted @ 2013-03-16 15:25 Myths 阅读(271) 评论(0) 推荐(0) 编辑
摘要: <html><head><meta http-equiv=Content-Type content="text/html;charset=utf-8"><script>y=1;function imgs(){ var myImg=document.getElementsByTagName("img")[0]; myImg.src=y+".jpg"; if(y==2)y=1; else y++;}</script></head><body onload=&qu 阅读全文
posted @ 2013-03-16 15:21 Myths 阅读(266) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/pythonimport optparsefrom socket import *from threading import *screenLock = Semaphore(value=1)def connScan(host,port): try: s = socket(AF_INET,SOCK_STREAM) s.connect((host,port)) screenLock.acquire() print '[+] '+str(port)+' open' except: screenLo... 阅读全文
posted @ 2012-12-08 16:01 Myths 阅读(370) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/pythonimport zipfileimport optparsefrom threading import Threaddef extractFile(zFile,password): try: zFile.extractall(pwd=password) print '[+] Found password '+password except: passdef main(): parser = optparse.OptionParser("usage %prog -f <zipfile> -d <dicti... 阅读全文
posted @ 2012-12-08 14:46 Myths 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 朋友宿舍有个孩子老是晚上别人要睡觉他玩YY叫唤,就让我写个弱智程序让他开不了YY,下面是代码#include <windows.h>#include <stdio.h>#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )void Fuck(){ unsigned long id_num; while(1) { Sleep(500); HWND hWnd = ::FindWindow("QWidget& 阅读全文
posted @ 2012-11-10 18:35 Myths 阅读(344) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python"""<-- The scanner to scan the admin/login path by co1d7urt -->"""import sys,httplibfrom optparse import OptionParserusageString = "Usage: %prog [options] hostname"parser = OptionParser(usage=usageString)(opts,args) =... 阅读全文
posted @ 2012-11-09 20:28 Myths 阅读(1838) 评论(0) 推荐(0) 编辑
摘要: 要进行linux下的mysql的C编程,需要安装mysql及mysql的开发包,ubuntu下直接apt-get install libmysql++安装开发包。#include <mysql.h>相关函数:MYSQL *mysql_init(MYSQL *);//这里称之为载入函数吧,返回的MYSQL指针要用到后续的函数中int mysql_options(MYSQL *connection, enum option_to_set,const char *argument);//设置MYSQL*的一些属性,比如超时时间等MYSQL *mysql_real_connect(MYSQ 阅读全文
posted @ 2012-10-23 12:48 Myths 阅读(7612) 评论(2) 推荐(2) 编辑