⋅•⋅⊰∙∘☽༓☾∘∙⊱⋅•⋅
Dox by: Bladez ツ 
⋅•⋅⊰∙∘☽༓☾∘∙⊱⋅•⋅

name = “Jasmine Nicole Underwood”
age = 15
dob = “July 16, 2008”
address = “624 Via Sonoma, Mesquite, TX 75150”
phone_number = “(254) 784-0896”
email = “Jasmine.and.carson.are.forever22@gmail.com”

sms_gateway_address = “2547840896@txt.att.net”
mms_gateway_address = “2547840896@mms.att.net”
```
Z do a    "DOMAIN_VERDICT": "Valid",
    "DOMAIN": "gmail.com",
    "VERDICT": "Valid",
    "LOCAL": "Jasmine.and.carson.are.forever22",
    "SCORE": 0.86507,
    "MX": "MX: 30 alt3.gmail-smtp-in.l.google.com., 40 alt4.gmail-smtp-in.l.google.com., 10 alt1.gmail-smtp-in.l.google.com., 5 gmail-smtp-in.l.google.com., 20 alt2.gmail-smtp-in.l.google.com.",
    "EMAIL": "Jasmine.and.carson.are.forever22@gmail.com"
}

account = data["LOCAL"]
domain = data["DOMAIN"]
domain_age_days = 10386
smtp_provider = "google"
mx_found = True
mx_record = "gmail-smtp-in.l.google.com"

print(account)
print(domain)
print(domain_age_days)
print(smtp_provider)
print(mx_found)
print(mx_record)
```
SMTP PROVIDER
google
MX FOUND
true
MX RECORD
gmail-smtp-in.l.google.com

property_type = "SingleFamily"
year_built = 1978
heating = "Other"
cooling = "Central"
parking = "1 Parking space"
lot_size = "7,200 sqft"
bedrooms = 3
bathrooms = 2
heating_features = "Other"
cooling_features = "Central"
interior_livable_area = "1,758 sqft"
fireplace = True
total_parking_spaces = 1
parking_features = "Garage - Attached"
exterior_features = "Brick"
parcel_number = "38120470060140000"
construction_materials = "Frame"
foundation = "Slab"
roof = "Composition"
region = "Mesquite"

print(property_type)
print(year_built)
print(heating)
print(cooling)
print(parking)
print(lot_size)
print(bedrooms)
print(bathrooms)
print(heating_features)
print(cooling_features)
print(interior_livable_area)
print(fireplace)
print(total_parking_spaces)
print(parking_features)
print(exterior_features)
print(parcel_number)
print(construction_materials)
print(foundation)
print(roof)
print(region)
property_tax = [
    {"year": 2023, "taxes": "--", "assessment": "$255,460 +27.2%"},
    {"year": 2022, "taxes": "$387 +8.1%", "assessment": "$200,880 +4.5%"},
    {"year": 2021, "taxes": "$358 +13.6%", "assessment": "$192,170 +10.8%"},
    {"year": 2020, "taxes": "$315 +16.6%", "assessment": "$173,400 +7.9%"},
    {"year": 2019, "taxes": "$270 +13.2%", "assessment": "$160,690"},
    {"year": 2018, "taxes": "$239 -91.6%", "assessment": "$160,690 +17.5%"},
    {"year": 2017, "taxes": "$2,835 +11.5%", "assessment": "$136,730 +25.6%"},
    {"year": 2016, "taxes": "$2,542 -2.2%", "assessment": "$108,840"},
    {"year": 2015, "taxes": "$2,598", "assessment": "$108,840"},
    {"year": 2014, "taxes": "$2,598", "assessment": "$108,840"}
]
for entry in property_tax:
    print(f"Year: {entry['year']}")
    print(f"Property Taxes: {entry['taxes']}")
    print(f"Tax Assessment: {entry['assessment']}")
    print()


SCHOOL INFORMATION 

data = """
Domain Name: mesquiteisd.org
Registry Domain ID: 07266d7b12834e51820b4a851ad610f9-LROR
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://www.networksolutions.com
Updated Date: 2023-10-10T15:19:49Z
Creation Date: 1999-04-08T04:00:00Z
Registry Expiry Date: 2033-04-08T04:00:00Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Registrar Abuse Contact Email: 
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: Mesquite Independent School District
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: TX
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: US
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
"""

# Extract domain name
domain_name = re.search(r"Domain Name: (.+)", data).group(1)

# Extract creation date
creation_date = re.search(r"Creation Date: (.+)", data).group(1)

# Extract registrar
registrar = re.search(r"Registrar: (.+)", data).group(1)

print(f"Domain Name: {domain_name}")
print(f"Creation Date: {creation_date}")
print(f"Registrar: {registrar}")
```
Sure! Here's an example of how you can extract the relevant information from the provided WHOIS data in Python using regular expressions:


data = """
Domain Name: mesquiteisd.org
Registry Domain ID: 07266d7b12834e51820b4a851ad610f9-LROR
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://www.networksolutions.com
Updated Date: 2023-10-10T15:19:49Z
Creation Date: 1999-04-08T04:00:00Z
Registry Expiry Date: 2033-04-08T04:00:00Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Registrar Abuse Contact Email: 
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: REDACTED FOR PRIVACY
Registrant Name: REDACTED FOR PRIVACY
Registrant Organization: Mesquite Independent School District
Registrant Street: REDACTED FOR PRIVACY
Registrant City: REDACTED FOR PRIVACY
Registrant State/Province: TX
Registrant Postal Code: REDACTED FOR PRIVACY
Registrant Country: US
Registrant Phone: REDACTED FOR PRIVACY
Registrant Phone Ext: REDACTED FOR PRIVACY
Registrant Fax: REDACTED FOR PRIVACY
Registrant Fax Ext: REDACTED FOR PRIVACY
"""

# Extract domain name
domain_name = re.search(r"Domain Name: (.+)", data).group(1)

# Extract creation date
creation_date = re.search(r"Creation Date: (.+)", data).group(1)

# Extract registrar
registrar = re.search(r"Registrar: (.+)", data).group(1)

print(f"Domain Name: {domain_name}")
print(f"Creation Date: {creation_date}")
print(f"Registrar: {registrar}")
```

IP INFO

{
    "ip": "70.119.16.44",
    "country_code": "US",
    "country_name": "United States of America",
    "region_name": "Texas",
    "city_name": "Corpus Christi",
    "latitude": 27.80058,
    "longitude": -97.39638,
    "zip_code": "78401",
    "time_zone": "-06:00",
    "asn": "11427",
    "as": "Charter Communications Inc",
    "isp": "Charter Communications Inc",
    "domain": "spectrum.com",
    "net_speed": "DSL",
    "idd_code": "1",
    "area_code": "361",
    "weather_station_code": "USTX0294",
    "weather_station_name": "Corpus Christi",
    "mcc": "-",
    "mnc": "-",
    "mobile_brand": "-",
    "elevation": 6,
    "usage_type": "ISP",
    "address_type": "Unicast",
    "continent": {
        "name": "North America",
        "code": "NA",
        "hemisphere": [
            "north",
            "west"
        ],
        "translation": {
            "lang": null,
            "value": null
        }
    },
    "district": "Nueces County",
    "country": {
        "name": "United States of America",
        "alpha3_code": "USA",
        "numeric_code": 840,
        "demonym": "Americans",
        "flag": "https:\/\/cdn.ip2location.io\/assets\/img\/flags\/us.png",
        "capital": "Washington, D.C.",
        "total_area": 9826675,
        "population": 331002651,
        "currency": {
            "code": "USD",
            "name": "United States Dollar",
            "symbol": "$"
        },
        "language": {
            "code": "EN",
            "name": "English"
        },
        "tld": "us",
        "translation": {
            "lang": null,
            "value": null
        }
    },
    "region": {
        "name": "Texas",
        "code": "US-TX",
        "translation": {
            "lang": null,
            "value": null
        }
    },
    "city": {
        "name": "Corpus Christi",
        "translation": {
            "lang": null,
            "value": null
        }
    },
    "time_zone_info": {
        "olson": "America\/Chicago",
        "current_time": "2024-01-18T15:39:05-06:00",
        "gmt_offset": -21600,
        "is_dst": false,
        "sunrise": "07:21",
        "sunset": "17:58"
    },
    "geotargeting": {
        "metro": "600"
    },
    "ads_category": "IAB19-18",
    "ads_category_name": "Internet Technology",
    "is_proxy": false,
    "proxy": {
        "last_seen": 0,
        "proxy_type": "-",
        "threat": "-",
        "provider": "-",
        "is_vpn": false,
        "is_tor": false,
        "is_data_center": false,
        "is_public_proxy": false,
        "is_web_proxy": false,
        "is_web_crawler": false,
        "is_residential_proxy": false,
        "is_spammer": false,
        "is_scanner": false,
        "is_botnet": false
    }
}