├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── DllExport.bat ├── LICENSE ├── README.md ├── Rubeus.sln ├── Rubeus ├── Asn1 │ ├── AsnElt.cs │ ├── AsnException.cs │ ├── AsnIO.cs │ └── AsnOID.cs ├── Commands │ ├── Asktgs.cs │ ├── Asktgt.cs │ ├── Asreproast.cs │ ├── Brute.cs │ ├── Changepw.cs │ ├── Createnetonly.cs │ ├── Currentluid.cs │ ├── Describe.cs │ ├── Dump.cs │ ├── HarvestCommand.cs │ ├── Hash.cs │ ├── ICommand.cs │ ├── Kerberoast.cs │ ├── Klist.cs │ ├── Monitor.cs │ ├── Ptt.cs │ ├── Purge.cs │ ├── RenewCommand.cs │ ├── S4u.cs │ ├── Tgssub.cs │ ├── Tgtdeleg.cs │ └── Triage.cs ├── Domain │ ├── ArgumentParser.cs │ ├── ArgumentParserResult.cs │ ├── CommandCollection.cs │ └── Info.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Rubeus.csproj ├── app.config ├── lib │ ├── Ask.cs │ ├── Bruteforcer.cs │ ├── ConsoleTable.cs │ ├── Crypto.cs │ ├── Harvest.cs │ ├── Helpers.cs │ ├── Interop.cs │ ├── Interop │ │ ├── Luid.cs │ │ └── NtException.cs │ ├── LSA.cs │ ├── Networking.cs │ ├── Renew.cs │ ├── Reset.cs │ ├── Roast.cs │ ├── S4U.cs │ └── krb_structures │ │ ├── AP_REQ.cs │ │ ├── AS_REP.cs │ │ ├── AS_REQ.cs │ │ ├── Authenticator.cs │ │ ├── Checksum.cs │ │ ├── EncKDCRepPart.cs │ │ ├── EncKrbCredPart.cs │ │ ├── EncKrbPrivPart.cs │ │ ├── EncryptedData.cs │ │ ├── EncryptionKey.cs │ │ ├── KDC_REQ_BODY.cs │ │ ├── KERB_PA_PAC_REQUEST.cs │ │ ├── KRB_CRED.cs │ │ ├── KRB_ERROR.cs │ │ ├── KRB_PRIV.cs │ │ ├── KrbCredInfo.cs │ │ ├── LastReq.cs │ │ ├── PA_DATA.cs │ │ ├── PA_ENC_TS_ENC.cs │ │ ├── PA_FOR_USER.cs │ │ ├── PA_PAC_OPTIONS.cs │ │ ├── PrincipalName.cs │ │ ├── TGS_REP.cs │ │ ├── TGS_REQ.cs │ │ └── Ticket.cs └── packages.config ├── packages └── DllExport.1.7.0 │ ├── .gitattributes │ ├── .signature.p7s │ ├── 3rd-party.txt │ ├── DllExport.1.7.0.nupkg │ ├── DllExport.bat │ ├── License.txt │ ├── Readme.md │ ├── build_info.txt │ ├── changelog.txt │ ├── gcache │ ├── metacor │ │ └── Rubeus │ │ │ ├── DllExport.dll │ │ │ ├── DllExport.dll.ddNSi │ │ │ └── DllExport.xml │ └── metalib │ │ └── Rubeus │ │ ├── DllExport.dll │ │ ├── DllExport.dll.ddNSi │ │ └── DllExport.xml │ ├── hMSBuild.bat │ ├── lib │ ├── net20 │ │ └── _._ │ └── netstandard1.1 │ │ └── _._ │ └── tools │ ├── Conari.dll │ ├── Conari.xml │ ├── Microsoft.Build.Framework.dll │ ├── Microsoft.Build.Utilities.v4.0.dll │ ├── Microsoft.Build.dll │ ├── Mono.Cecil.dll │ ├── Mono.Cecil.pdb │ ├── MvsSln.dll │ ├── MvsSln.pdb │ ├── MvsSln.xml │ ├── NSBin.dll │ ├── NSBin.pdb │ ├── PeViewer.exe │ ├── PeViewer.pdb │ ├── RGiesecke.DllExport.MSBuild.dll │ ├── RGiesecke.DllExport.MSBuild.pdb │ ├── RGiesecke.DllExport.dll │ ├── RGiesecke.DllExport.pdb │ ├── coreclr │ ├── .version.txt │ ├── LICENSE.TXT │ ├── PATENTS.TXT │ ├── README.md │ ├── changelog.txt │ ├── clrgc.dll │ ├── coreclr.dll │ ├── ilasm.exe │ ├── ildasm.exe │ ├── ildasmrc.dll │ ├── mscordaccore.dll │ └── mscordbi.dll │ ├── gnt.bat │ ├── hMSBuild.bat │ ├── init.ps1 │ ├── net.r_eg.DllExport.Wizard.dll │ ├── net.r_eg.DllExport.Wizard.pdb │ ├── net.r_eg.DllExport.Wizard.targets │ ├── net.r_eg.DllExport.targets │ └── raw │ └── lib │ ├── net20 │ ├── DllExport.dll │ └── DllExport.xml │ └── netstd │ ├── DllExport.dll │ └── DllExport.xml └── runrubeus.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/DllExport.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/README.md -------------------------------------------------------------------------------- /Rubeus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus.sln -------------------------------------------------------------------------------- /Rubeus/Asn1/AsnElt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Asn1/AsnElt.cs -------------------------------------------------------------------------------- /Rubeus/Asn1/AsnException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Asn1/AsnException.cs -------------------------------------------------------------------------------- /Rubeus/Asn1/AsnIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Asn1/AsnIO.cs -------------------------------------------------------------------------------- /Rubeus/Asn1/AsnOID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Asn1/AsnOID.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Asktgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Asktgs.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Asktgt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Asktgt.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Asreproast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Asreproast.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Brute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Brute.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Changepw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Changepw.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Createnetonly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Createnetonly.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Currentluid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Currentluid.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Describe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Describe.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Dump.cs -------------------------------------------------------------------------------- /Rubeus/Commands/HarvestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/HarvestCommand.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Hash.cs -------------------------------------------------------------------------------- /Rubeus/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/ICommand.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Kerberoast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Kerberoast.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Klist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Klist.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Monitor.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Ptt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Ptt.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Purge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Purge.cs -------------------------------------------------------------------------------- /Rubeus/Commands/RenewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/RenewCommand.cs -------------------------------------------------------------------------------- /Rubeus/Commands/S4u.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/S4u.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Tgssub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Tgssub.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Tgtdeleg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Tgtdeleg.cs -------------------------------------------------------------------------------- /Rubeus/Commands/Triage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Commands/Triage.cs -------------------------------------------------------------------------------- /Rubeus/Domain/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Domain/ArgumentParser.cs -------------------------------------------------------------------------------- /Rubeus/Domain/ArgumentParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Domain/ArgumentParserResult.cs -------------------------------------------------------------------------------- /Rubeus/Domain/CommandCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Domain/CommandCollection.cs -------------------------------------------------------------------------------- /Rubeus/Domain/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Domain/Info.cs -------------------------------------------------------------------------------- /Rubeus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Program.cs -------------------------------------------------------------------------------- /Rubeus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rubeus/Rubeus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/Rubeus.csproj -------------------------------------------------------------------------------- /Rubeus/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/app.config -------------------------------------------------------------------------------- /Rubeus/lib/Ask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Ask.cs -------------------------------------------------------------------------------- /Rubeus/lib/Bruteforcer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Bruteforcer.cs -------------------------------------------------------------------------------- /Rubeus/lib/ConsoleTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/ConsoleTable.cs -------------------------------------------------------------------------------- /Rubeus/lib/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Crypto.cs -------------------------------------------------------------------------------- /Rubeus/lib/Harvest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Harvest.cs -------------------------------------------------------------------------------- /Rubeus/lib/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Helpers.cs -------------------------------------------------------------------------------- /Rubeus/lib/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Interop.cs -------------------------------------------------------------------------------- /Rubeus/lib/Interop/Luid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Interop/Luid.cs -------------------------------------------------------------------------------- /Rubeus/lib/Interop/NtException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Interop/NtException.cs -------------------------------------------------------------------------------- /Rubeus/lib/LSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/LSA.cs -------------------------------------------------------------------------------- /Rubeus/lib/Networking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Networking.cs -------------------------------------------------------------------------------- /Rubeus/lib/Renew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Renew.cs -------------------------------------------------------------------------------- /Rubeus/lib/Reset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Reset.cs -------------------------------------------------------------------------------- /Rubeus/lib/Roast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/Roast.cs -------------------------------------------------------------------------------- /Rubeus/lib/S4U.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/S4U.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/AP_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/AP_REQ.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/AS_REP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/AS_REP.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/AS_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/AS_REQ.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/Authenticator.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/Checksum.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/EncKDCRepPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/EncKDCRepPart.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/EncKrbCredPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/EncKrbCredPart.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/EncKrbPrivPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/EncKrbPrivPart.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/EncryptedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/EncryptedData.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/EncryptionKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/EncryptionKey.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KDC_REQ_BODY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KDC_REQ_BODY.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KERB_PA_PAC_REQUEST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KERB_PA_PAC_REQUEST.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KRB_CRED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KRB_CRED.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KRB_ERROR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KRB_ERROR.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KRB_PRIV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KRB_PRIV.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/KrbCredInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/KrbCredInfo.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/LastReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/LastReq.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/PA_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/PA_DATA.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/PA_ENC_TS_ENC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/PA_ENC_TS_ENC.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/PA_FOR_USER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/PA_FOR_USER.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/PA_PAC_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/PA_PAC_OPTIONS.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/PrincipalName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/PrincipalName.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/TGS_REP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/TGS_REP.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/TGS_REQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/TGS_REQ.cs -------------------------------------------------------------------------------- /Rubeus/lib/krb_structures/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/lib/krb_structures/Ticket.cs -------------------------------------------------------------------------------- /Rubeus/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/Rubeus/packages.config -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/.gitattributes -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/3rd-party.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/3rd-party.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/DllExport.1.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/DllExport.1.7.0.nupkg -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/DllExport.bat -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/License.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/Readme.md -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/build_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/build_info.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.dll.ddNSi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.dll.ddNSi -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metacor/Rubeus/DllExport.xml -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.dll.ddNSi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.dll.ddNSi -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/gcache/metalib/Rubeus/DllExport.xml -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/lib/net20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/lib/netstandard1.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Conari.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Conari.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Conari.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Conari.xml -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Microsoft.Build.Utilities.v4.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Microsoft.Build.Utilities.v4.0.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Microsoft.Build.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/Mono.Cecil.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/MvsSln.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/MvsSln.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/MvsSln.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/MvsSln.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/MvsSln.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/MvsSln.xml -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/NSBin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/NSBin.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/NSBin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/NSBin.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/PeViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/PeViewer.exe -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/PeViewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/PeViewer.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/RGiesecke.DllExport.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/RGiesecke.DllExport.MSBuild.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/RGiesecke.DllExport.MSBuild.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/RGiesecke.DllExport.MSBuild.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/RGiesecke.DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/RGiesecke.DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/RGiesecke.DllExport.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/RGiesecke.DllExport.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/.version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/.version.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/LICENSE.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/PATENTS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/PATENTS.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/README.md -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/clrgc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/clrgc.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/coreclr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/coreclr.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/ilasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/ilasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/ildasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/ildasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/ildasmrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/ildasmrc.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/mscordaccore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/mscordaccore.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/coreclr/mscordbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/coreclr/mscordbi.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/gnt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/gnt.bat -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/init.ps1 -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.pdb -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/net.r_eg.DllExport.Wizard.targets -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/net.r_eg.DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/net.r_eg.DllExport.targets -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/raw/lib/net20/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/raw/lib/net20/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/raw/lib/net20/DllExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/raw/lib/net20/DllExport.xml -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/raw/lib/netstd/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/raw/lib/netstd/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.7.0/tools/raw/lib/netstd/DllExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/packages/DllExport.1.7.0/tools/raw/lib/netstd/DllExport.xml -------------------------------------------------------------------------------- /runrubeus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/Rubeus-Rundll32/HEAD/runrubeus.png --------------------------------------------------------------------------------