Senya 1.0 Cross Domain WordPress Data Mining Utility

Сеня 1.0 (Senya 1.0)

Senya 1.0 Cross Domain WordPress Data Mining Utility

Сеня 1.0 – K0NxT3D 2024
Back End WordPress Utility

Features:

  • Edit WordPress Database.
  • Edit WordPress User Tables.
  • Edit WordPress User Information.
  • Display WordPress Domain and Associated Admin Email Addresses Across Multiple Domains.

A simple and easy to use PHP/HTML Based MySQL Back End Connection Utility with Editing Capabilities and Email Harvesting across Multiple Domains.

Download

Facebook Data Centers Project

I collect a lot of data and data mining is just one of those things that I enjoy.
I build Web Crawlers and Web Scrapers often, but I really love tracking other
bots, some of which I’ve “known” for decades now.

With the ever expanding Facebook Empire, I’ve been catching a lot of the
hits from FacebookExternalHit,
[ facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) ]
and while Facebook it’self is being overrun by nefarious bots and hacked accounts,
their problem is my solution.

The majority of the hits from FacebookExternalHit have preceded an attack, which tells me several things.
1: Facebook For Developers has given nefarious actors an edge on the Facebook user and I won’t go into detail on that, but I can make better informed security decisions based on what can be done from that side of the platform.

2: I can test my security software on both Facebook and my websites by simply posting a link to Facebook and this is really handy in my line of work. I get to see which Data Center the bot is coming from (GeoLocation), how many bots that particular Data Center has (Interesting Data There) and how fast the reaction time is, which helps determine the software being used and in which manner it’s being used.

3: Most Importantly, it gives me reasons to build new software.

So, I built this database for such purpose as to collect more data on the situation and there’s some interesting patterns developing. While it’s not exactly something I feel the urge to release, it’s worth sharing.

FBDC uses Php and MySQL, a pretty simple database and small file sizes (I like small files).
The User Input Form Works.. Ikr, a form that works??
It has a few things left to work out on the user input; I’m a big fan of getting my hands dirty,
so Updating the Data Center / BotInfo is being done via phpmyadmin until I build a better form.
Here’s a few screenshots:

FBDC - Facebook Data Centers and FacebookExternalHit Bot Collected Data

FBDC – Facebook Data Centers and FacebookExternalHit Bot Collected Data – Main Menu

 

FBDC - Facebook Data Centers and FacebookExternalHit Bot Collected Data

FBDC – Facebook Data Centers and FacebookExternalHit Bot Collected Data – Data Center List

 

FBDC - Facebook Data Centers and FacebookExternalHit Bot Collected Data

FBDC – Facebook Data Centers and FacebookExternalHit Bot Collected Data – BotInfo List

 

FBDC - Facebook Data Centers and FacebookExternalHit Bot Collected Data

FBDC – Facebook Data Centers and FacebookExternalHit Bot Collected Data – User Input Form

 

FBDC - Facebook Data Centers and FacebookExternalHit Bot Collected Data

FBDC – Facebook Data Centers and FacebookExternalHit Bot Collected Data – Because There HAS to be a Hacker Theme too.

Bionic Backdrop Digital Video Screen Media

Bionic Backdrop

Bionic Backdrop Digital Video Screen Media – Events, Rock Shows, DJ, Performances of Any Kind.
New Features Include A Hidden Drop Down Menu
(Mouse Over or Tap In The Top Black Header)
With Casting Support from Desktop or Mobile.
Tested on Chromium (Solid) and Firefox(Not Recommended)
Lyrics Library is active and still Beta (Opens in new window).
Binary Output is Currently Disabled (Beta Only)

Bionic Home Page

Spoofing Random Toys MySql WordPress Form Data Fields

Fake Email Generator Create Random Email Addresses From Files

This is just a fun little toy that happened while working on MySQL Automation.
The files used are first_names.txt, last_names.txt and domains.txt.
Reading random lines from the files in order creates the “Fake Email Address” and using [array_rand($variable)]; each email address is somewhat unique as I’m only using 80,000 names (give or take a few hundred).

All Files: fake-email-generator.zip


#!/bin/bash
$first_names = 'first_names.txt';
$last_names = 'last_names.txt';
$dom = 'domains.txt';

    $firstname = file($first_names);
    $fdata = $firstname[array_rand($firstname)];
    $first = $fdata;

        $lastname = file($last_names);
        $ldata = $lastname[array_rand($lastname)];
        $last = $ldata;

    $comd = file($dom);
    $edata = $comd[array_rand($comd)];
    $com = $edata;

        $first = preg_replace('/\s+/', '', $first);
        $first = strtolower($first);
        $last = preg_replace('/\s+/', '', $last);
        $last = strtolower($last);
        $com = preg_replace('/\s+/', '', $com);

    echo $first."@".$last.$com;]
PhP Shell Bash Website Security Encryption Decryption Hash Encoding Decoding