Jump to content

Search the Community

Showing results for tags 'bot'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CRIMESTATE
    • Foruminfos
    • User Verifizierungen
    • Donator Rang
    • Reports
    • Bugs | Verbesserungsvorschläge
  • Premium Sections
    • Vendor
    • Hit-N-Run
    • Hafenkiosk by KoljaGoldstein020
  • COMMUNITY
    • Vorstellungen
    • Offtopic
    • Anfängerbereich
    • Fragen & Antworten
    • Free Accounts/Stuff
    • Leaks
    • Real Life Crime
    • International
    • Szene News
    • Cracking
  • Marktplatz
    • Biete
    • Suche
    • Gewinnspiele
    • Versteigerungen
    • Marktplatzprofile
    • Treuhand Erstellen

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Title

Found 5 results

  1. RU Версия: EN Version: Контакты.\Contacts. #software #autobumping #promotion #sales #automation #bot #софт #автоподнятие #продвижение #продажи #автоматизация #бот
  2. Introduction: Hello everyone, This is Jinu. I'm very glad to share this tutorial with you. I know there are plenty of same kind of tutorials available here. Hence, many folks are struggling to understand it and having lots of questions about RAT (Remote Administration Tools). Here I started this tutorial from Basic to Advance. So everyone can understand how to handle the RAT and If they have any questions or problems, that too will get solved easily.This I share with you is what I have learned and with my experience. This tutorial is brought you by the great group RedLions. Okay, let us move on. What is a RAT (Remote Administration Tool)? RAT is an acronym of Remote Administration Tool. It's a program or software. What a RAT allows you to do is to take full control of another one's computer without their knowledge. There are many RATs (Remote Administration Tools) available in the market with different features. They are including free RATs and paid RATs. You can see all the RATs currently available in the market here. How does it work (Working model)? With the help of Remote Administration Tool, you will create one "Program". That is called "Server.exe". Once you send that to your friends or enemies, If they click that file, their computer details will be seen in your RAT. So you can control their PC, steal their passwords, watch their activities etc... without their knowledge. How to make your PC ready before start RATing? While opening RAT, creating server.exe, opening ports, outgoing-incoming connections, your Anti-Virus or your firewall won't allow this process. It will affect your RATing process. So you need to completely disable your Anti-virus, firewall, and any other blocking software. Okay, we move on to the next step. What are the things require before you start RATing? The Remote Administration Tool alone will not help you to RAT, someone. It requires some other tools too. Here are the list:Spoiler How to setup a RAT? In this tutorial, I have chosen the RAT called DarkComet 5.3. And many of the RAT will have almost same settings like this. The setup process will consist of: Creating no-IP account. Or creating FreeDNS account. Setup DUC client. Or setup FreeDNS client. Setup your RAT. Portforwarding. Crypting Spreading 1. Creating no-IP account or Creating FreeDNS: Creating no-ip account (Click to View) or Creating FreeDNS account (Click to View) 2. Setting up the DUC client or Setting up the FreeDNS client: Setting up the DUC client (Click to View) or Setting up the FreeDNS client (Click to View)
  3. Anonymous VPS https://darkvps.pro Free Version https://scorpiocrypter.cc/ScorpioReleased.rar Password: Scorpio Quick Review of Scorpio RAT free Version: https://scorpio-software.com/Scorpio.mp4
  4. NCrypt is my first crypter project, ever. Since starting this project I have started & released side projects, worked on prototypes, and even have another brand new similar codebase in the works. However, NCrypt holds its own! I am releasing NCrypt as a starter kit for anyone wanting to protect their own programs, intellectual property, and data. NCrypt can help you learn the building blocks of how a crypter works, while being ready to use as-is too! NCrypt is ideal if you don't have a dev setup because it contains a tiny C compiler inside of it. This means you can modify the Stub.c file whenever you want and the next time you use NCrypt.exe, it will use the new code from there! By choosing to click & reveal the spoiler below, you agree you will only use NCrypt on your own personal devices for authorized, legal uses, and for whitehat purposes only. Clicking the spoiler below for any other use is prohibited, against my terms of service, and violates the license agreement of this codebase & associated tools. If you still agree, you can view the source code here: https://github.com/LNodesL/NCrypt Programs (pre-compiled): Code https://github.com/LNodesL/NCrypt/raw/main/dist/NCrypt-Release-Programs-0.0.1.zip https://github.com/LNodesL/NCrypt/raw/8f10b1eb54d920102da4189160e536ecaf62d062/dist/NCrypt-Release-Programs-0.0.1.zip https://www.mediafire.com/file/m6j0fucp230rl2a/NCrypt-Release-Programs-0.0.1.zip/file https://mega.nz/file/gr0Czbba#PLM2lOnbua4Cujl0Hw5x53RniFZK13eboSgzs_qlqfU ******************************************************************************************************* Grundsätzlich gilt: Virusscan und VM ist euer Freund. Da die meisten geuppten Tools Stealer, Rats, Bots etc. sind wird fast jedes AV eine Warnmeldung abgeben. „Klingt komisch, ist aber so" Das ist bei diesen Programmen normal, macht die Sache aber für Anfänger nicht besser! Darum immer eine VM (https://www.heise.de/download/product/virtualbox-40385) nutzen. Btw: Die Tools sind nicht von mir! Wie sagt man so schön: Das ist alles nur geklaut und gestohlen, nur gezogen und geraubt. Entschuldigung, das hab ich mir erlaubt.
  5. nodes-crypter | npm package | C++ Javascript Crypter Today you will learn how to take a C/C++ program, encrypt it with XOR and then execute it, all using Javascript with this easy-to-use npm package. Take your static or dynamic compiled program and protect its runtime by utilizing a tmp file and run it in a child process, all from a JS file! You heard that right - your program's encrypted binary will be stored inside of a final script "run.js", which you can then run with "node run.js" to inject the embedded C/C++ program and run it as normal. Code npm install -g nodes-crypter Tested on Linux & Windows run command: nodes-crypter ./original-cpp-program secretKeyPhraseHere nodes-crypter will generate a file: run.js run command: node run.js your original C++ program will be decrypted (inside of run.js) and run as a program https://www.npmjs.com/package/nodes-crypter/v/1.0.6 This is an example of how you can use JS in unique ways due to npm & node. This method of encrypting and then decrypting, pushing to a tmp file & running as a child process is a proof of concept. You are free to learn from it, use it for personal use, and enhance the codebase - within limits of its license & npm TOS. The main file is node-crypter's only bin script, which encrypts your original program using XOR. Code const xorEncrypt = (input, key) => { const keyBuffer = Buffer.from(key); const output = Buffer.alloc(input.length); for (let i = 0; i < input.length; i++) { output = input ^ keyBuffer[i % keyBuffer.length]; } return output; }; Similarly, the final run.js file has a decrypt function: Code const xorDecrypt = (input, key) => { const keyBuffer = Buffer.from(key); const output = Buffer.alloc(input.length); for (let i = 0; i < input.length; i++) { output = input ^ keyBuffer[i % keyBuffer.length]; } return output; }; The run.js file will decrypt the program (encrypted binary held inside of run.js) & push it to a tmp file: Code const tempPath = path.join('/tmp', 'decrypted_program'); fs.writeFileSync(tempPath, decryptedData); fs.chmodSync(tempPath, '755'); Then, it runs the tmp file using the exec() function. This is a basic method, mostly meant to highlight the capabilities of using an npm package to handle the "build process", and using node to handle the runtime. You can always use other runtime methods instead, and add other build steps too. I hope you enjoyed this & if you learned anything, please say a thank you below. If you have any questions or suggestions, feel free to reply!! ******************************************************************************************************* Grundsätzlich gilt: Virusscan und VM ist euer Freund. Da die meisten geuppten Tools Stealer, Rats, Bots etc. sind wird fast jedes AV eine Warnmeldung abgebeben. Das ist bei diesen Programmen normal, macht die Sache aber für Anfänger nicht besser! Darum immer eine VM (https://www.heise.de/download/product/virtualbox-40385) nutzen. Btw: Die Tools sind nicht von mir! Wie sagt man so schön: Das ist alles nur geklaut und gestohlen, nur gezogen und geraubt. Entschuldigung, das hab ich mir erlaubt.
×
×
  • Create New...