Skip to content

Instantly share code, notes, and snippets.

@HelgeSverre
Created January 5, 2016 12:03
Show Gist options
  • Save HelgeSverre/97fabf6e755d5e60ce29 to your computer and use it in GitHub Desktop.
Save HelgeSverre/97fabf6e755d5e60ce29 to your computer and use it in GitHub Desktop.
KIK Username Enumeration Script
#!/usr/bin/env python
# KIK.me Username Enumerator
import os
import sys
import requests
def main():
base_url = "http://kik.me/"
with open('usernames.txt') as f:
username_list = f.read().splitlines()
for (i, username) in enumerate(username_list):
username_link = base_url + username
r = requests.get(username_link, allow_redirects=False)
if (r.status_code == 200):
if "Oops, there is no Kik user with that username." not in r.text:
print "SUCCESS: " + username
else:
print "FAIL: " + username
else:
print "FAIL got non 200 response from KIK"
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
print "\nSaving file, quiting..\n"
try:
sys.exit(0)
except SystemExit:
os._exit(0)
@pautog02
Copy link

hello

@tiffanymae00
Copy link

Hi, im tiffany. Im looking for someone i can talk with. Also looking for my lovelife here and new friends. IF youre interested, you can reach me anytime in kik, coz im usually online there. My username is tiffanymae00

@tineclark001
Copy link

What are you looking for on the site? i am looking for someone to talk and play with FWB, No string attached. Are you up for that ? Fire me on KIK @ tineclark001

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment