Giter VIP home page Giter VIP logo

betatoolsv3's Introduction

betatoolsv3

Tools scanner proxy:port asn scanner

------------ Tools Scanner --------------



------------ Tools ASN Scanner --------------



Powered by Iddant ID

betatoolsv3's People

Contributors

ipkzone avatar

Stargazers

 avatar 3xploit avatar

Watchers

 avatar  avatar

betatoolsv3's Issues

mass_rev.php

<?php
class ReverseDomain {
  public $list;
  public function Domain() {
    $site = $this->list;
    $exp = explode("\n", $site);
    $array = array_unique($exp);
    foreach ($array as $http) {
      if (!preg_match('/http(s?)\:\/\//i', $http)) {
        $a = "http://".$http;
      } else {
        $a = $http;
      }
      $parse = parse_url($a);
      $domain = preg_replace('/^www\./', '', $parse['host']);
      $www = "www.".$domain;
      $host = gethostbyname($www);
      for ($i = 0; $i < $host; $i++) {
        echo " [\e[32mInfo\e[0m] $domain // \e[31m$host\e[0m [\e[32mLIVE\e[0m] \n";
        $open = fopen("result.txt", 'a+');
        fwrite($open, "$domain - $host\n");
        fclose($open);
        break;
      }
    }
  }
  public function headerr() {
    echo "\n\tMass Reverse IP Scanner\n \n";
  }
}
$reverse = new ReverseDomain();
$reverse->headerr();
if (!isset($argv[1])) {
  echo " example : php mass_rev.php list.txt";
  exit(1);
} else {
  $link = $argv[1];
}
if (!file_exists($link)) die("File List ".$link." Not Found");
$domain = explode("\n", file_get_contents($link));
echo " [\e[32mInfo\e[0m] Total domain [ " .count($domain)." ]\n\n";
foreach ($domain as $env) {
  $reverse->list = trim($env);
  $reverse->Domain();
}
?>

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.