-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFunHack.c
37 lines (28 loc) · 840 Bytes
/
FunHack.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include<stdio.h>
#include<windows.h>
#include<stdlib.h>
int main(){
float acc;
system("cls");
printf("Congratulations, You won $7 Million Dollars prize!! \n");
printf("Enter your A/c no. to claim the amount: ");
scanf("%f",&acc);
// changes terminal color to GREEN
system("color a");
printf("\nProcessing your request... \n");
Sleep(1500);
printf("\nWaiting for server side response... \n");
Sleep(750);
system("title Hacking Bank A/c...");
printf("\nAlmost done... \n");
Sleep(250); // adds delay in messagse pop-up
system("prompt Root@126.61.23.01"); // changes the starting directory path
system("cls");
for(int i=0; ; i++)
{
// lists down the files continuously
system("dir/s");
system("ls/s");
}
return 0;
}