全国各地一手数据信息百度贴吧-把树莓派打导致NFC破解神器
近期闲着没事,遂把手头的树莓派制成了一个便携式的NFC破解工具
应用的是树莓派B ,NFCSD读卡器应用的是ACR122U,安裝了ACR122U的驱动器,应用的是GNU LibNFC做为读写能力手机软件,应用mfoc做为破解软件
实际硬件配置以下
专业软件下载链接: *** 黑客权威专家怎么联系
raspbian-jessie-lite
https://downloads.raspberrypi.org/raspbian_lite_latest
Win33DiskImager
https://sourceforge.net/projects/win32diskimager/files/latest/download
新宇ACR122USD读卡器Linux驱动器
http://www.acs.com.hk/download-driver-unified/5864/ACS-Unified-PKG-Lnx-112-P.zip
*** 黑客权威专家怎么联系LibNFC
http://dl.bintray.com/nfc-tools/sources/libnfc-1.7.1.tar.bz2
mfoc
https://mfoc.googlecode.com/files/mfoc-0.10.6.tar.gz
电脑操作系统
电脑操作系统层面我应用的是Raspbian,版本号为2016-02-26-raspbian-jessie-lite
应用Win33DiskImager把镜像系统载入到TF卡上,为了更好地可以让树莓派启动的情况下把图象輸出到HDMI,必须改动载入后的一个配备 *** 黑客权威专家怎么联系文档,该文件在镜像系统载入后,电脑有一个名叫boot的60M的系统分区
编写里边的config.txt
将选定这方面的注解除掉
Shell
# For more options and information see
# http://www.raspberrypi.org/documentation/configuration/config-txt.md
# Some settings may impact device functionality. See link above for details
# uncomment if you get no picture on HDMI for a default & *** 黑客权威专家怎么联系quot;safe" mode
hdmi_safe=1
# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
#disable_overscan=1
# For more options and information see
# *** 黑客权威专家怎么联系 http://www.raspberrypi.org/documentation/configuration/config-txt.md
# Some settings may impact device functionality. See link above for details
# uncomment if you get no picture on HDMI for a default "safe" mode
hdmi_safe=1
# uncomment this if your display has a black border of *** 黑客权威专家怎么联系 unused pixels visible
# and your display can output without overscan
#disable_overscan=1
随后把卡 *** 树莓派,给小派通电,起动电脑操作系统
基本配备
更先是必须给小派配备一个IP地址,便于于远程控制SSH的浏览,我这里配备的IP地址为192.168.100.2,网关ip为192.168.100.254
编写/etc/network/intarfaces
加上以下內容
Shell
vi / *** 黑客权威专家怎么联系etc/network/intarfaces
# ----------------
auto eth0
iface eth0 inet static
address 192.168.100.2
netmask 255.255.255.0
gateway 192.168.100.254
vi /etc/network/intarfaces
# ----------------
auto eth0
iface eth0 inet static
address 192 *** 黑客权威专家怎么联系.168.100.2
netmask 255.255.255.0
gateway 192.168.100.254
随后重新启动互联网,就可以应用ssh浏览了
Shell
service networking restart
1service networking restart
应用ssh连接小派,账户为pi,登陆密码为raspberry,由于我本人较为习惯性应用root开展实际操作,因此 这儿我登录上来以后变更了root的登陆密码,打开了ssh的root登录
Shell
$ *** 黑客权威专家怎么联系 sudo su
passwd root
# 键入预设定的root登陆密码
$ sudo su
passwd root
# 键入预设定的root登陆密码
随后改动ssh配置文档,编写/etc/ssh/sshd_config
Shell
vi /etc/ssh/sshd_config
# ----------------
# 28行,改成
PermitRootLogin yes
vi *** 黑客权威专家怎么联系 /etc/ssh/sshd_config
# ----------------
# 28行,改成
PermitRootLogin yes
随后重新启动ssh服务
Shell
service ssh restart
service ssh restart
接下去,设定小派的软件源,我这里应用的是阿里云服务器的源
改动 /etc/apt/sources.list
Shell
vi /etc/apt/sources.list
# -- *** 黑客权威专家怎么联系--------------
deb http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib
deb-src http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib
vi /etc/apt/sources.list
# ----------------
deb http://mirrors.aliyun.com/raspbian/raspbian/ jessie *** 黑客权威专家怎么联系 main non-free contrib
deb-src http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib
随后开展升级
Shell
apt-get update
apt-get upgrade
apt-get update
apt-get upgrade
随后安装vim等专用工具
Shell
apt-get install *** 黑客权威专家怎么联系 -y vim
apt-get install -y vim
配备NFC载入自然环境
更先是安裝ACR122U的驱动器
将ACS-Unified-PKG-Lnx-112-P.zip提交至小派,随后解压工具,应用dpkg安裝
Shell
unzip ACS-Unified-PKG-Lnx-112-P.zip
cd acsccid_linux_bin-1.1.2/raspbian/jessie/
dpkg -i libacsccid1_1.1.2-1~bpo8 1_armhf.deb
*** 黑客权威专家怎么联系unzip ACS-Unified-PKG-Lnx-112-P.zip
cd acsccid_linux_bin-1.1.2/raspbian/jessie/
dpkg -i libacsccid1_1.1.2-1~bpo8 1_armhf.deb
随后安裝libnfc
更先安裝编译程序自然环境,随后将libnfc-1.7.1.tar.bz2提交至小派,解压工具,开展编译程序安裝
Shell
apt-get install make gcc libu *** -dev libpcsclite-dev
tar *** 黑客权威专家怎么联系 -jxvf libnfc-1.7.1.tar.bz2
cd libnfc-1.7.1/
./configure --with-drivers=acr122_u *** --prefix=/usr --sysconfdir=/etc
make
make install
apt-get install make gcc libu *** -dev libpcsclite-dev
tar -jxvf libnfc-1.7.1.tar.bz2
cd libnfc-1.7.1/
./configure --with-黑客专家怎么联系drivers=acr122_u *** --prefix=/usr --sysconfdir=/etc
make
make install
然后编译安装mfoc,将mfoc-0.10.6.tar.gz上传到小派,解包,进行编译安装
Shell
apt-get install autoconf checkinstall
tar -jxvf mfoc-0.10.6.tar.gz
cd mfoc-0.10.6/
autoreconf -vis
./configure
make
checkinstall -D -y --install
make install
apt-get install autoconf checkinstall
tar -jxvf mfoc-0.10.6.tar.gz
cd mfoc-0.10.6/
autoreconf -vis
./configure
make
checkinstall -D -y --install
make install
然后禁用掉pn5黑客专家怎么联系33的内核模块,不然小派是没办法去识别ACR122U的
Shell
modprobe -r pn533 nfc
vi /etc/modprobe.d/fbdev-blacklist.conf
# ----------
# 末尾加入
blacklist pn533 nfc
modprobe -r pn533 nfc
vi /etc/modprobe.d/fbdev-blacklist.conf
# ----------
# 末尾加入
blacklist pn533黑客专家怎么联系 nfc
然后将ACR122U连接到小派,查看一下是否识别
Shell
nfc-list
nfc-list
进行破解
我这里随便问同事要了张Mifare 1K的卡,先用手机上的MCT进行读取,发现扇区1加密,没办法读取,其他扇区是可以成功读取的,尝试使用mfoc进行破解
把卡片放到ACR122U上
键入如下命令开始破解,破解完成之后保存的黑客专家怎么联系文件名为mycard.mfd
Shell
mfoc -P 50 -T 30 -O mycard.mfd
1mfoc -P 50 -T 30 -O mycard.mfd
大约等了10分钟左右,破解完成!
查看一下mycard.mfd,卡中数据已经完全可以看到了
其他说明
如需转载烦请注明出处
来自于LinE's Blog
。这个一定是你在使用手机的过程中,不小心登录了一些非法的网站,被强制下载了一些非法程序,黑客正是通过这些非法程序,盗取了你的手机的一些资料,黑客那么厉害,你是怎么发现他入侵了,难道你通过双眼就可以看出来吗?你手机上没有杀毒软件,没有腾讯手机管家吗?全国一手数据贴黑客专家怎么联系吧
黑客可以通过微信号找到人吗。现在找个黑客,比上天1还难?
全国一手数据贴吧呵呵。这种论坛很多、但是要邀请码。这个很麻烦如果您是初学者。建议你到我博客里看看。有什么不会的。或者不懂的。留言,我帮您解答本人也是一名。
战争游戏》WarGames(1983)1983年,电影《战争游戏》开黑客影片先河。故事发生在里根总统任期,当时正值冷战高峰。苹果Mac机尚未诞生,电脑还只是科学怪才专属。
您好,立案是一种国家行为,不收取任何费用的同时也不必报网警,正确的做法是拨打110,以被人骚扰来报警,骚扰的方式是通过 *** 电脑入侵,即黑客的方式。您。全国一手数据贴吧
第黑客专家怎么联系十名野兽杀手——谢尔盖特卡奇2007年11月乌克兰检察机关日前结束了对连环杀手谢尔盖特卡奇之一批共40起罪案的调查,调查资料整整有105卷之多。然而这还。
全国一手数据贴吧知道你的IP地址的渠道太多了,如果不是有意的攻击你都无所谓的,我们的IP地址在很多的 *** 上是可以显示出来的,只要你的电脑没有安全漏洞,密码不是弱口令。
标签:
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。