Home

Awesome

WallOfSame License

<p align="center"> <img src="./Images/logo.png"> </p>

What is Wall of Shame?

Most of the common web technologies used in the world are still using clear text authentication, Wall of Shame is an implementation to illustrate why this is such a bad idea. Wall of Shame is an OS independent tool that's written in python. Wall of Shame collects the user credentials, sensitive device information from unsecure devices around by creating multiple access points based on the device saved network broadcasts. Once a device connects to the access point created by the Hak5 device, one can get tricked by the portals with spoofed DNS. Further, this tool analyses the traffic of the connected device dynamically for gathering plain text authenticated credentials.

:book: How it works?

The hardware used for this is a Hak5 Pineapple. The project uses the in-built pineap module of the Hak5 Pineapple for getting devices connected to it. After a device connects to the pineapple, there are two ways for gathering the credentials.

:wrench: Tech Stack

:minidisc: Instructions & Getting Started

  1. Make sure that you have python3, pip, sshpass installed.

  2. Clone the repo.

$ git clone https://github.com/theevilsyn/wall-of-shame/
$ cd wall-of-Shame
  1. Install the Requirements
$ pip install -r requirements.txt
  1. Install the EvilPortal Module in the pineapple and copy the portals into the pineapple.
$ scp -r portals/ root@<pineapple>:/sd/wall-of-shame/portals/
  1. Create a user for database management and grant the permissions.
mysql> CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
mysql> GRANT ALL PRIVILEGES ON * . * TO 'username'@'localhost';
mysql> exit
  1. Start
$ ./wallofshame.py --setup
$ ./wallofshame.py --init
$ ./wallofshame.py --start <Method>

:camera: Screenshots

Screenshot1

Screenshot2

:gem: Contributors

Developed with :hearts: by Team bi0s

  1. Jaswanth Bommidi - Network Security Researcher, Team bi0s

How to Contribute?

  1. Fork the repository, clone it locally and run it following the installation instruction above.
  2. Find an issue or feature to work on, and put up an issue.
  3. Work on the patch or feature, test it and send a pull request referencing the issue.

Getting Help

Troubleshooting

Encountered strange behavior or an error? Here are some things to try before you shoot off that bug report:

Database Issues

Network Routing Issues

Portal Logs Error

If all else fails, file that bug report Please include the behavior you've observed, the behavior you expected, and any error messages.

It's a great help if you included a backtrace with errors.

Note

This tool is for educational purposes only, the author nor the organisation is no way responsible for any consequences that take place due to unintended use of this tool in any manner.