上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页
摘要: sqlmap.py Database injection and hak 阅读全文
posted @ 2013-06-29 05:25 spaceship9 阅读(150) 评论(0) 推荐(0) 编辑
摘要: I've got some files which can help a little bit to figure out where people are from based on their ID card NO.That file looks like this:Then I converted it into *.csv format which is basically a text file. It's not hard that almost every common document editor has this functionality.Here is 阅读全文
posted @ 2013-06-28 16:40 spaceship9 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 这个是需要在本机上设定用户名的。根据不同的用户权限。然后让不同的人来到本机上取得数据。参考一下有用的文章:http://www.ericstockwell.com/?p=54 (强烈建议阅读此文章,别的先不用探讨了)还有:http://superuser.com/questions/370953/how-to-not-allow-user-outside-of-home-directory-with-sftp (这是个人问的问题,他说的很通俗易懂,是我们想要的功能)想对于ftp来说,sftp安全许多,而且,途径许多。用的ssh默认端口22传输的文件。如果更改的话,要另外指明。是经过这样一个过程 阅读全文
posted @ 2013-06-27 18:57 spaceship9 阅读(1964) 评论(0) 推荐(0) 编辑
摘要: 引用: linux中VSFTP无法从外网访问问题! http://blog.csdn.net/zbulrush/article/details/841978原文:FTP协议有两种工作方式:PORT方式和PASV方式,中文意思为主动式和被动式。Port模式:ftp server:tcp 21 client:dynamicPasv模式:ftp server:tcp 21 <----client:dynamicftp server:tcp dynamic <----client:dynamicPORT(主动)方式的连接过程是:客户端向服务器的FTP端口(默认是21)发送连接请求,服务器接 阅读全文
posted @ 2013-06-27 17:33 spaceship9 阅读(7155) 评论(0) 推荐(0) 编辑
摘要: 建议阅读知识:http://linux.vbird.org/linux_basic/0210filepermission.php 这是关于档案权限,用户,组等的问题。介绍的很有意思。1. Install vsftp servicedownload from the official website and build it from source if necessary :)on ubuntu you could useapt-get install vsftp2. vsftp settings Purposes: 1). make severial folders for differe. 阅读全文
posted @ 2013-06-27 15:39 spaceship9 阅读(757) 评论(1) 推荐(0) 编辑
摘要: ---恢复内容开始---wget -m -e robots=off -U "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6" "http://www.example.com"去掉了robots.txt中写的不允许站外引用的君子协定。用了-U 仿造了一下request的访问格式。这样,可以避免一些网站不允许wget这样的agent来下载网站页面。-m 是下载全部页面的意思。如果默认网页没有robots.txt 和 其内部的只任 阅读全文
posted @ 2013-06-27 01:58 spaceship9 阅读(418) 评论(0) 推荐(0) 编辑
摘要: FOR wirelesstools: hydra, medusa, crunch, aircrack-ng packages (airodump-ng, airmon-ng, aircrack-ng, aireplay-ng), macchanger, ifconfighydra is for common use. sorta world wideairmon-ng for creating virtual ethernet/wireless cardifconfig to turn the virtual card up/down if "down" macchange 阅读全文
posted @ 2013-06-27 00:40 spaceship9 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 解决方案。条件:1.手机android 商店下载 blueTerm2.向arduino中载入如下代码:char val;int ledpin=13;void setup(){ Serial.begin(9600); pinMode(ledpin,OUTPUT);} void loop(){ val=Serial.read(); if(val=='o') { digitalWrite(ledpin,HIGH); Serial.println("LED ON!"); }else if(val=='f'){ digitalWrite(ledpin, 阅读全文
posted @ 2013-06-26 19:45 spaceship9 阅读(4359) 评论(0) 推荐(0) 编辑
摘要: 示例代码:类似与这样的led,共阴rgb led,通过调节不同的亮度,组合成不同的颜色。示例代码:/*作者:极客工坊时间:2012年12月18日IDE版本号:1.0.1发布地址:www.geek-workshop.com作用:共阳RGB颜色循环*/ int redPin = 11;int greenPin = 10;int bluePin = 9; void setup(){ pinMode(redPin, OUTPUT); pinMode(greenPin, OUTPUT); pinMode(bluePin, OUTPUT); } void loop(){ setColor(255... 阅读全文
posted @ 2013-06-26 19:30 spaceship9 阅读(1638) 评论(0) 推荐(0) 编辑
摘要: This tutorial is copied from youtube.comHere is the link: http://www.youtube.com/watch?v=RXqo3lC-JPI&list=PL6-GrNvaJuAhLWFJVwCC2qHCECEWUJtU6&index=5I uploaded it to youku.comHope you guys enjoy it.And here is the source codes:Take notice of the list comprehensions :[v for k, v in something.i 阅读全文
posted @ 2013-06-24 23:52 spaceship9 阅读(886) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 23 下一页