Skip to content

Commit 924dc24

Browse files
author
Voldemort
committed
Upgraded to v1.2
1 parent 975ea63 commit 924dc24

File tree

5 files changed

+438
-140
lines changed

5 files changed

+438
-140
lines changed

.changelog

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
IMPORTANT!!!
21

3-
The Updater was Broken on v1.0!! You'll have to Update Manually!!
4-
To Do So!! Just Copy Paste the Following Command!
2+
**v1.2**
53

6-
cd .. && rm -rf SpotifyChecker && git clone https://github.com/VoldemortCommunity/SpotifyChecker
4+
- Fixed Bugs!
5+
- Added Output Parsing
6+
- Added Option to Display Only Hits
7+
- Improved UI
8+
- Completely Noob Friendly Now!!
79

810
**v1.1**
911

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1
1+
1.2

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
- ~~Mass Spotify Accounts Checker v0.2.2 (Updated on 21/02/2019 14.00 IST)~~
66
- ~~Mass Spotify Accounts Checker v0.3 (Updated on 22/02/2019 00.50 IST)~~
77
- ~~Mass Spotify Accounts Checker v1.0 (Updated on 13/03/2019 2200 IST)~~
8-
- Mass Spotify Acxounts Checker v1.1 (Updated on 14/03/2019 1800 IST)
8+
- ~~Mass Spotify Acxounts Checker v1.1 (Updated on 14/03/2019 1800 IST)~~
9+
- Mass Spotify Accounts Checker v1.2 (Updated on 28/03/2019 1330 IST)
910

1011
## For Educational Purposes Only!!
1112
#### I Will Not be Responsible for Any Kind of Problems That Arise due to Unfair Usage!!
@@ -19,6 +20,14 @@
1920

2021
## Changelog
2122

23+
### v1.2
24+
* Fixed Bugs!
25+
* ***Added Output Parsing***
26+
* ***Added Option to Display Only Hits***
27+
* Improved UI
28+
* Completely Noob Friendly Now!!
29+
30+
2231
### v1.1
2332
* Fixed Bugs & Updater!
2433

checker.php

+37-9
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<?php
33
/*
44
* Created by @Voldemort1912
5-
* Last Update: 14/03/2019
6-
* Time: 1800
5+
* Last Update: 28/03/2019
6+
* Time: 1330
77
* Telegram @hewhomustnotbenamed
88
*/
99

@@ -33,6 +33,18 @@
3333
sleep(3);
3434
echo "\n[i] The Dependencies Have Been Installed Successfully!!";
3535
echo "\n[i] The Program has Been Installed Successfully!";
36+
echo "\n[i] Initiating Setup!!";
37+
sleep(3);
38+
39+
echo "\n\033[51;33;1m[i] Show Only Hits ?? Type \033[01;32;1m'yes'\033[51;33;1m/\033[01;31m'no'\033[51;33;1m : \033[0m ";
40+
$conhan = fgets(fopen("php://stdin", "rb"));
41+
42+
if (trim($conhan) == 'yes'){
43+
file_put_contents('.pref', '1'); //Hitsonly
44+
} else {
45+
file_put_contents('.pref', '0'); //all
46+
}
47+
3648
echo "\n[i] Please Restart the Program to See the Changes";
3749
echo "\n[i] Press Enter to Exit...";
3850
fgetc(STDIN);
@@ -58,6 +70,13 @@
5870
sleep(2);
5971
include ('class.spotify.php');
6072

73+
if(is_file('.pref')){
74+
$hitpref = trim(file_get_contents('.pref'));
75+
} else {
76+
$hitpref = '0';
77+
}
78+
79+
6180
//Check Updates
6281
$glo_ver = trim(file_get_contents('https://raw.githubusercontent.com/VoldemortCommunity/SpotifyChecker/master/.version'));
6382
$loc_ver = trim(file_get_contents('.version'));
@@ -72,7 +91,6 @@
7291
if (trim($ln) == 'yes'){
7392
echo "\033[05;32;1m[i] Updating Now...\n[i] Press Enter to Start...\033[0m";
7493
fgetc(STDIN);
75-
system('rm -rf .first');
7694
system('git reset --hard');
7795
system('git pull origin master');
7896
echo "\033[01;32;1m[i] Update Complete!! Please Restart to see Changes!!";
@@ -108,14 +126,14 @@
108126
}
109127
$lines = file(trim($inpnam));
110128

111-
//get ComboList Type
129+
/*//get ComboList Type
112130
echo "\n \n\033[01;32;1m[i]Enter Combo List Type:\n \n[1] Email:Password\n \n[2] Username:Password\n \nResponse[1/2]:\033[0m ";
113131
$comtype = fgets(fopen("php://stdin", "r"));
114132
if (trim($comtype) == '2'){
115133
echo "\n\033[05;31m[i]ABORT.\n[i]This Feature Has Been Discontinued.\n[i]Contact \033[01;32;1m@hewhomustn0tbenamed\033[01;31m (Telegram) for Details.\n[i]The Program will Now Exit!!\n[i]Press Enter to Continue...\033[0m";
116134
fgetc(STDIN);
117135
exit;
118-
}
136+
}*/
119137

120138
//Saving Hits
121139
echo "\n\033[51;33;1m[i] Enter File Name to Save Hits : \033[0m";
@@ -146,13 +164,23 @@
146164
if($dec["status"]==true){
147165
$count++;
148166
echo "\033[01;32;1m";
149-
file_put_contents($file, "[!]Email ID : ".$usernn."\n[!]Password : ".$inppass."\n[i]SpotifyChecker by @hewhomustn0tbenamed (Telegram)!!\n[!]".$res."\n\n", FILE_APPEND);
150167
} else {
151168
echo "\033[01;31m";
152169
}
153-
echo "[!]Username : " . $usernn . "\n";
154-
echo "[!]Password : " . $inppass . "\n";
155-
echo "[!]" . $res . "\n\n\033[0m";
170+
171+
if ($dec['status'] == true){
172+
echo "[!] Email ID : " . $usernn . "\n";
173+
echo "[!] Password : " . $inppass . "\n";
174+
echo "[!] Subscription : " . $dec['subscription'] . "\n";
175+
echo "[!] Validity : " . $dec['expdate'] . "\n";
176+
echo "[!] Country : " . $dec['ip'] . "\n\n\n\033[0m";
177+
file_put_contents($file, "[!] Email ID : ".$usernn."\n[!] Password : ".$inppass."\n[!] Subscription : " . $dec['subscription'] . "\n[!] Validity : " . $dec['expdate'] . "\n[!] Country : " . $dec['ip'] . "\n[i] SpotifyChecker by @hewhomustn0tbenamed (Telegram)!!\n\n", FILE_APPEND);
178+
} else if($hitpref == '0'){
179+
echo "[!] Email ID : " . $usernn . "\n";
180+
echo "[!] Password : " . $inppass . "\n";
181+
echo "[!] Invalid Account! \n";
182+
echo "[!] " . $dec['error'] . "\n\n\n\033[0m";
183+
}
156184
$combocount++;
157185
}
158186

0 commit comments

Comments
 (0)