secure-drop.1826.netways.de Open in urlscan Pro
185.11.255.218  Public Scan

URL: https://secure-drop.1826.netways.de/
Submission: On July 07 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 1 forms found in the DOM

<form>
  <div class="container">
    <div class=" page-header">
      <h1>One Time Dead Drop</h1>
      <p class="intro-text">Need to send some data securely? Password? Love Note? Haiku? This is the place.</p>
    </div>
    <!-- end header -->
    <div id="MakeDrop">
      <div class="arrow_box arrow_box_info">
        <p>Enter the message that you'd like to send to someone.</p>
      </div>
      <div class="panel-body">
        <textarea name="message" id="message" placeholder="Enter your message" class="form-control input-lg" rows="11"></textarea>
      </div>
      <button type="button" class="btn btn-lg btn-primary" onclick="setDrop()">Make the drop!</button>
    </div>
    <!-- end make your drop -->
    <div id="DropComplete">
      <div class="alert-success arrow_box arrow_box_success">
        <h2>Drop made!</h2>
        <p>You need to copy and send the message below to the person you want to pick up this drop. Note, for added security, send the password separate from the link.</p>
      </div>
      <div class="panel-body">
        <div class="drop-complete">
          <p class="intro-text"> Hi,<br> I'm sending you some secure information.<br>
          </p>
          <div class="well location-well"> Location: <span id="url"></span><br><br> Password: <span id="pass"></span>
          </div>
          <div class="warning">
            <p>Warning!</p>
            <ul>
              <li>This drop will ONLY work once, so be careful with the password, and make sure to copy the data immediately.</li>
              <li>After you pick it up, the data will self destruct and this link won't work anymore.</li>
              <li>This link will only work for 24 hours, so please check shortly.</li>
            </ul>
          </div>
        </div>
      </div>
      <button type="button" class="btn btn-lg btn-primary" onclick="window.location.assign(getHost())">Make another Drop</button>
    </div>
    <!-- end drop complete -->
    <div id="RetrieveDrop">
      <div class="arrow_box arrow_box_info">
        <h2>Enter the password</h2>
        <p>This will only work once! Clicking <strong>'Get The Drop'</strong> will delete the message permanently.</p>
      </div>
      <div class="panel-body">
        <input type="text" id="password" class="form-control input-lg" placeholder="Enter your password here" size="25">
      </div>
      <button type="button" class="btn btn-lg btn-primary" onclick="getDrop()">Get The Drop</button>
    </div>
    <!-- end retrieve your drop -->
    <div id="DisplayDrop">
      <div class="alert-success arrow_box arrow_box_success">
        <h2>Success!</h2>
        <p>Your decrypted message is below. This message has been deleted, you will not be able to retrieve it again.</p>
      </div>
      <div class="panel-body">
        <pre id="decrypted">                </pre>
      </div>
      <button type="button" class="btn btn-lg btn-primary" onclick="window.location.assign(getHost())">Make your own Drop</button>
    </div>
    <!-- end display dead drop -->
    <br><br>
    <a href="#demo" data-toggle="collapse">Is this safe?</a>
    <div id="demo" class="collapse">
      <p>Here's why your message is safe:</p>
      <ul>
        <li>Your message is not transmitted unencrypted</li>
        <li>Your message is not stored unencrypted</li>
        <li>Your encrypted message is stored for 24 hours, then deleted</li>
        <li>Once your message is retrieved, it is deleted</li>
        <li>If there is a problem retrieving your message, including an incorrect password, it is deleted.</li>
        <li>We cannot decrypt your message, we simply don't have the password</li>
      </ul>
      <p> The security of the encryption used is handled by the Symmetric Encryption engine developed at <a target="_blank" href="http://bitwiseshiftleft.github.io/sjcl/">Stanford</a>.<br>
      </p>
      <p> The largest threat associated with this method is having your message &amp; password both intercepted and retrieved before your intended recipient has an opportunity to retrieve it. You should be mindful of how you transmit these pieces of
        information, and ideally send the password separate from the link. </p>
      <h2>What if you're lying?</h2> Well, you're a clever person, have a look at the <a href="https://github.com/BillKeenan/dead-drop-python" target="_blank">code.</a> on github
    </div>
    <!-- end 'is this safe' -->
  </div>
  <!-- end container -->
</form>

Text Content

ONE TIME DEAD DROP

Need to send some data securely? Password? Love Note? Haiku? This is the place.

Enter the message that you'd like to send to someone.


Make the drop!


DROP MADE!

You need to copy and send the message below to the person you want to pick up
this drop. Note, for added security, send the password separate from the link.

Hi,
I'm sending you some secure information.


Location:

Password:

Warning!

 * This drop will ONLY work once, so be careful with the password, and make sure
   to copy the data immediately.
 * After you pick it up, the data will self destruct and this link won't work
   anymore.
 * This link will only work for 24 hours, so please check shortly.

Make another Drop


ENTER THE PASSWORD

This will only work once! Clicking 'Get The Drop' will delete the message
permanently.


Get The Drop


SUCCESS!

Your decrypted message is below. This message has been deleted, you will not be
able to retrieve it again.

                

Make your own Drop


Is this safe?

Here's why your message is safe:

 * Your message is not transmitted unencrypted
 * Your message is not stored unencrypted
 * Your encrypted message is stored for 24 hours, then deleted
 * Once your message is retrieved, it is deleted
 * If there is a problem retrieving your message, including an incorrect
   password, it is deleted.
 * We cannot decrypt your message, we simply don't have the password

The security of the encryption used is handled by the Symmetric Encryption
engine developed at Stanford.


The largest threat associated with this method is having your message & password
both intercepted and retrieved before your intended recipient has an opportunity
to retrieve it. You should be mindful of how you transmit these pieces of
information, and ideally send the password separate from the link.


WHAT IF YOU'RE LYING?

Well, you're a clever person, have a look at the code. on github
..