Projects STRLCPY PowerShdll Commits 6dcd75b5
🤬
  • Added embeded payload feature

    Added embeded payload feature
  • Loading...
  • p3nt4 committed 4 years ago
    6dcd75b5
    1 parent 8aef5a2c
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    dll/Common.cs
    skipped 156 lines
    157 157   
    158 158   }
    159 159   public void start(string[] args) {
     160 + // Place payload here for embeded payload:
     161 + string payload = "";
     162 + if (payload.Length != 0)
     163 + {
     164 + Console.Write(ps.exe(payload));
     165 + ps.close();
     166 + return;
     167 + }
    160 168   int i=0;
    161 169   bool useConsole = true;
    162 170   string ret;
    skipped 209 lines
  • ■ ■ ■ ■ ■ ■
    exe/Common.cs
    skipped 60 lines
    61 61   }
    62 62   public void start(string[] args)
    63 63   {
     64 + // Place payload here for embeded payload:
     65 + string payload = "";
     66 + if (payload.Length != 0) {
     67 + Console.Write(ps.exe(payload));
     68 + ps.close();
     69 + return;
     70 + }
    64 71   if (args.Length==0) { this.interact(); return; }
    65 72   else if (args[0] == "-h")
    66 73   {
    skipped 78 lines
Please wait...
Page is in error, reload to recover