博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bek Trak Trik for wireless WPA/WPA2 & SSH & email
阅读量:5115 次
发布时间:2019-06-13

本文共 1986 字,大约阅读时间需要 6 分钟。

FOR wireless

tools: hydra, medusa, crunch, aircrack-ng packages (airodump-ng, airmon-ng, aircrack-ng, aireplay-ng), macchanger, ifconfig

hydra is for common use. sorta world wide

 

airmon-ng for creating virtual ethernet/wireless card

ifconfig to turn the virtual card up/down

  if "down"

    macchanger mon0 -r  # to change the MAC to be a random number

    ifconfig mon0 up # make it be in use, then use it to have fun

 

Build them from source, find out what's going on.

 

crunch // for generating passwd

|  // bash pip to transfer things returned

aircrack-ng // to calculate passwd from text dictionary

Something which would be useful from youtube:

 

1) Type: cd /pentest/passwords/crunch2) Type: ./crunch (min) (max) (charset) -t (pattern) -o (wordlistname.lst)Example: ./crunch 10 10 0123456789 -t 916@@@@@@@ -o 916phonenumbers.lstIf you plan to generate a large wordlist, you can use the following command to create multiple files:1) Type: ./crunch (min) (max) (charset) -o START -c (words per file)Example: ./crunch 8 16 1234abcd -o START -c 200000This will create 8 - 16 character words made of characters 1, 2, 3, 4 and a, b, c, d. The -c option enabled us to specify how many words we want to place in each file. Therefore, if the wordlist was a total of 1,000,000 words, Crunch would generate 5 files (each with 200,000 words). To tell Crunch to create multiple files, you must include "-o START" in the command. Crunch will name each file for you.

  For more information: http://www.youtube.com/watch?v=_ZiiJT7iJ2c&feature=youtu.be

here's the brife demo:

It shows that the passwd is found.

But you need to get the xxx.cap first which is captured after its handshake packages are collected. aireplay-ng, airodump-ng will help you. 

 

take good use of

man crunch

man  # read if someone needs

 

For SSH

easy found... Change the passwd as quickly as possible :p

 

For E-mail

 

 

Email passwd found :p

Changing passwd regularly is a good habbit :p

转载于:https://www.cnblogs.com/spaceship9/p/3157895.html

你可能感兴趣的文章
图片等比例缩放及图片上下剧中
查看>>
jQuery方法大全
查看>>
WebView加载网页详情
查看>>
【转载】Linux screen 命令详解
查看>>
dd命令 建立两颗一模一样的磁盘
查看>>
常用的jquery触屏手机页面特效代码下载
查看>>
background-clip,background-origin
查看>>
C# 如何创建一个Windows服务
查看>>
集群和分布式区别
查看>>
Android(java)学习笔记153:采用post请求提交数据到服务器(qq登录案例)
查看>>
Java基础知识强化101:Java 中的 String对象真的不可变吗 ?
查看>>
Android 高级UI设计笔记12:ImageSwitcher图片切换器
查看>>
虚拟主机与虚拟目录学习小结
查看>>
hlg1414安装雷达【贪心】
查看>>
Blog文章待看
查看>>
Golang flag包使用详解(一)
查看>>
python文件IO
查看>>
regsvr32简介
查看>>
升级到 .NET Core 2.1
查看>>
C#多线程交替赋值取值
查看>>