Results 1 to 10 of 10
  1. #1
    bkRy's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Location
    Austria. (No kangaroos)
    Posts
    15
    Reputation
    14
    Thanks
    7
    My Mood
    Amazed

    Crack_Me V1 (Easy to Medium difficulty)

    Hello bkRy here,

    so yesterday I saw a "Crack Me" made by Mezmaa and I decided to make one myself, so here it is!

    What do you need to find?
    ->You have to find the "correct" keys to get access.








    !If you are going to post the "answer" + !explanation!, please put it into a spoiler tag!

    I will post the code of the whole programm since both of those scans are getting false-positives... Just in case you wanna compile it yourself
    Don't cheat by looking at the code!
     
    Code:
    #include <windows.h>
    #include <iostream>
    #include <random>
    #include <time.h>
    
    bool isKeyPresent = FALSE;
    unsigned int inputKey;
    
    int main(){
    	SetConsoleTitle("Crack_Me-MPGH v1 - by bkRy");
    	std::cout << "\t\t\tCrackeMe v1 by bkRy" << std::endl;
    
    #pragma region math
    	int tempSerial;
    
    	
    		srand(time(NULL));
    		//getting rand. values with <time.h>
    		unsigned int x = rand();
    		Sleep(30);
    		unsigned int z = (rand()) + x;
    		Sleep(30);
    		unsigned int y = (rand()) + x;
    		Sleep(30);
    		unsigned int multiX = 15;
    		Sleep(30);
    		//done getting rand. values, should be big enough to make a "good" key				
    
    
    		unsigned int q = z*((x + y)*(x + y));
    		unsigned int p = x*((x - y)*(x - y));
    		unsigned int multi = y / multiX;
    
    		tempSerial = (((((q - p) + multi))*(x / 10)) / x); //all that should equal https://prntscr.com/d21km1
    		tempSerial += tempSerial;				
    
    
    
    		if (tempSerial > 2){
    			isKeyPresent = TRUE;
    		}
    		else{goto end;} //prevent no key "cracks"
    
    		rtry: //could have placed the rtry on 45, but to prevent cracks lets put it up here
    		if (isKeyPresent == TRUE){	
    			std::cout << "What is the Key?\n" << "Key: ";
    			std::cin >> inputKey;
    
    			if (inputKey == tempSerial){
    				std::cout << "\nCongratulations!\nPlease leave a 'thanks' on my profile if you enjoyed it!" << std::endl;
    				Sleep(5000);
    				goto end;
    			}if (inputKey != tempSerial){
    				std::cout << "Wrong key...\nTry again!" << std::endl;
    				Sleep(700);
    				system("cls");
    				std::cout << "\t\t\tCrackeMe v1 by bkRy" << std::endl;
    				goto rtry;
    			}
    
    
    		}	
    		
    		if (isKeyPresent == FALSE){goto end;} //prevent no key "cracks"
    #pragma endregion
    
    
    
    	end:
    	return 0;
    }




    //EDIT forgot to compile file in Release mode, uploaded it new + virustotal updated
    <b>Downloadable Files</b> Downloadable Files
    Last edited by bkRy; 11-02-2016 at 02:38 PM.

  2. The Following 5 Users Say Thank You to bkRy For This Useful Post:

    Jattkx (06-10-2017),nullptr_t (01-04-2017),sistemB (04-13-2018),ssksalvation (04-17-2017),Zaczero (11-02-2016)

  3. #2
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    Ill check it tomorrow
    Which language did you use ?
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  4. #3
    bkRy's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Location
    Austria. (No kangaroos)
    Posts
    15
    Reputation
    14
    Thanks
    7
    My Mood
    Amazed
    Quote Originally Posted by Zaczero View Post
    Ill check it tomorrow
    Which language did you use ?
    C++ only

  5. #4
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    Not sure why this was automatically approved, but your file seems to be safe.

    Also: https://virustotal.com/en/file/6be37...is/1478042164/
    The VirusTotal link you provided was not the file uploaded in attachments, so I re-uploaded it for you (link above this sentence).

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  6. #5
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    msvcp120d.dll missing.
    You have compiled your app in Debug mode. Can't run it w/o libraries.
    Compile it in Release and attach new file


    - - - Updated - - -

    cracked.
    i've compiled source by myself w/o looking into it
    ----------------------------------------------------------
    My cracking process:
     

     

     

     

     

     

     

     

    <b>Downloadable Files</b> Downloadable Files
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  7. The Following User Says Thank You to Zaczero For This Useful Post:

    bkRy (11-02-2016)

  8. #6
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    Again, not sure why the file you posted was auto-approved, but here are the corresponding virus scan links:
    https://virustotal.com/en/file/288dc...is/1478117119/
    https://virusscan.jotti.org/en-GB/fi...job/csf24a4boo

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

  9. #7
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    Quote Originally Posted by Hugo Boss View Post
    Again, not sure why the file you posted was auto-approved, but here are the corresponding virus scan links:
    https://virustotal.com/en/file/288dc...is/1478117119/
    https://virusscan.jotti.org/en-GB/fi...job/csf24a4boo
    Thanks,
    I've forgot about that virus scans
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  10. #8
    bkRy's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Location
    Austria. (No kangaroos)
    Posts
    15
    Reputation
    14
    Thanks
    7
    My Mood
    Amazed
    Compile it in Release and attach new file
    @Zaczero thanks for pointing that out! Changed file + VirusTotal links!

  11. The Following User Says Thank You to bkRy For This Useful Post:

    Zaczero (11-02-2016)

  12. #9
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,262
    My Mood
    Angelic
    Quote Originally Posted by bkRy View Post
    @Zaczero thanks for pointing that out! Changed file + VirusTotal links!
    Waiting for more advanced versions
    Last edited by Zaczero; 11-03-2016 at 09:44 AM.
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  13. #10
    __readgsqword's Avatar
    Join Date
    Mar 2016
    Gender
    female
    Posts
    39
    Reputation
    10
    Thanks
    13
    @Zaczero the key is not strange at all. It's just randomely generated upon each execution.
    But of course a simple byte patch does the trick, change je to jne, etc. I think my solution is a bit more interesting. Rather than just jumping, I forced your binary to print the key for me. I won't post the executable, but I made a short video. Whenever it comes to hacking and cracking, try to be unorthadox. It makes it more fun.

    https://*************.com/open?id=0B8...DhLZFlZbDFYcUU
    Last edited by __readgsqword; 11-06-2016 at 05:13 PM.

Similar Threads

  1. WarRock NFV1 Edition - "Easy Wall Hack"
    By Unavailable in forum WarRock - International Hacks
    Replies: 19
    Last Post: 07-21-2007, 02:36 AM
  2. Endless Online, Easy target.
    By The_Enigma in forum General Game Hacking
    Replies: 1
    Last Post: 06-28-2006, 07:59 PM
  3. easy AoE1 resource hack
    By oowatsthat in forum Hack Requests
    Replies: 1
    Last Post: 05-02-2006, 09:13 PM
  4. *Makes a seperate thread for easy viewing*
    By Severed in forum Help & Requests
    Replies: 3
    Last Post: 02-21-2006, 02:40 AM
  5. Replies: 13
    Last Post: 02-09-2006, 10:25 PM