darkinbox
Hectopat
Daha fazla
- Sistem Özellikleri
- w3schools.com
- Cinsiyet
- Erkek
- Meslek
- Bilgisayar Mühendisi
Selamlar, bu şekilde bir seri yapmayı düşünüyorum, C++ öğrenmem ile alakalı, önemli olan sizlerin yorumlamasıdır, yorumlarınız benim için çok önemli!
Gün 3 ve Gelişmiş bir CrackMe dosyası yapabilecek bir hale geldim sanırım.
Kod:
Sürekli crackme deneyimi kazanıyordum, bu sefer de siz kazanın bari 
Isteyen derleyip cracklemeye çalışabilir.
( Şifrenin yazısının data türü string olduğu için kolay bir şekilde cracklenebilir )
Gün 3 ve Gelişmiş bir CrackMe dosyası yapabilecek bir hale geldim sanırım.
Kod:
C++:
#include <iostream>
#include <windows.h>
#include <string>
using namespace std;
int main() {
system("Color 9");
string correct;
string pass;
string cor;
string rect;
correct = "Not this.";
string got;
string name;
cout << (" ____ _ _ __ _\n| __ ) _ _ _ __ __ _ | | __ | |/ / (_)_ __ __ _\n| _ \ | | | | | '__| / _` | | |/ / | ' / | | | '_ \ / _` |\n| |_) | | |_| | | | | (_| | | < | . \ | | | | | | | (_| |\n|____ / \__, _| |_ | \__, _| |_ | \_\ | _ | \_\ | _| |_| |_ | \__, |\n|___ /");
cout << "\n\n\nHello, please select one of the languages below!\n TR\n EN\n\n ";
cin >> got;
if ( got == "TR" ) {
system("Color 2");
cout << "\n USER INPUT >> " << got << "\n";
cor = "bu degil";
rect = "bu da degil";
cout << "\n Isminiz nedir? \n";
cin >> name;
cor = "yar2ak";
cout << "\n USER INPUT >> " << name << "\n";
cor = got + name;
system("Color 6");
cout << " Sifre nedir? \n";
cout << "\n Sifre, basta sectiginiz dillerden birini ve isminizi icermektedir !! \n";
rect = "3169haha";
cout << "\n\n sifreyi giriniz : ";
cin >> pass;
if (pass == cor + rect) {
system("Color 2");
cout << " \n Tebrikler!! Bu uygulamayi kirmayi basardiniz, eger yeni biriyseniz bu muthis birsey!! \n";
system("pause");
}
else {
system("Color 4");
cout << " \n Yanlis sifre )= Maybe next time! \n ";
system("pause");
}
} else if ( got == "EN" ) {
cout << "\n USER INPUT >> " << got << "\n";
system("Color 2");
cout << "\n What is your name? \n";
cin >> name;
cout << "\n USER INPUT >> " << name << "\n";
cor = got + name;
system("Color 6");
cout << " What is the password? \n";
cout << "\n Password includes the language you select and the name that you enter !!! \n";
cout << "\n\n Please enter the password : ";
cin >> pass;
rect = "3169haha";
if (pass == cor + rect) {
system("Color 2");
cout << " \n YES, U DID IT! IF YOU ARE BEGINNER THATS AWESOME! \n";
system("pause");
}
else {
system("Color 4");
cout << "\n Wrong Password )= Maybe next time!\n ";
system("pause");
}
}
else {
cout << "\n Please select one of the languages ( \"TR\" or \"EN\"\n";
}
system("pause");
}
Isteyen derleyip cracklemeye çalışabilir.
( Şifrenin yazısının data türü string olduğu için kolay bir şekilde cracklenebilir )
Dosya Ekleri
Son düzenleyen: Moderatör: