This file contains hidden or 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
| version: '3' | |
| services: | |
| ms: | |
| restart: always | |
| image: metasploitframework/metasploit-framework:latest | |
| environment: | |
| DATABASE_URL: postgres://postgres@db:5432/msf?pool=200&timeout=5 | |
| links: | |
| - db | |
| ports: |
This file contains hidden or 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
| <font color="#8AE234">www.twitter.com</font> | |
| <font color="#8AE234">0.twitter.com</font> | |
| <font color="#8AE234">2010.twitter.com</font> | |
| <font color="#8AE234">2011.twitter.com</font> | |
| <font color="#8AE234">2012.twitter.com</font> | |
| <font color="#8AE234">2013.twitter.com</font> | |
| <font color="#8AE234">2014.twitter.com</font> | |
| <font color="#8AE234">2015.twitter.com</font> | |
| <font color="#8AE234">6nations.twitter.com</font> |
This file contains hidden or 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
| [-] Total Unique Subdomains Found: 4889 | |
| na.ads.yahoo.com | |
| ed.answers.yahoo.com | |
| ca.answers.yahoo.com | |
| au.news.yahoo.com | |
| lo0.tor88-119-pdb.ne1.yahoo.com | |
| advertising.yahoo.com | |
| lo0.tor183-350-pdb.ne1.yahoo.com | |
| hk.7-eleven.yahoo.com | |
| scsd.msg.yahoo.com |
This file contains hidden or 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
| www.google.com | |
| alt.aspmx.1.google.com | |
| client.1.google.com | |
| clients.1.google.com | |
| gmail-smtp-mas.1.google.com | |
| misc-anycast.1.google.com | |
| 104-cache-blicnet.google.com | |
| 119-cache-blicnet.google.com | |
| 216-239-45-10.google.com | |
| 31.google.com |
This file contains hidden or 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
| 123contactform | |
| abacus | |
| acquia | |
| activecampaign | |
| adobe | |
| aerofs | |
| airbnb | |
| amazon | |
| ancile | |
| appcelerator |
This file contains hidden or 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
| Computer Systems Engineer, with more than 8 years of professional experience. Member of the IEEE Computer Society and the ACM. He has made contributions to free software in addition to being interested in emerging areas of technology. | |
| He learned to program at 16 in programming language C, an event that caused technology to become his biggest hobby. He currently works as an independent software developer and as a university teacher. | |
| Freelancer in software development projects such as web frontend, web backend plus infrastructure in multiple languages and technologies such as codeigniter, Ruby on rails, Django and laravel. | |
| Knowledge in C, D, julia, java, assembler, c ++, c, javascript, perl, python, ruby, r, go, elixir, c, clojure, css, tex, matlab, swift, kotlin. | |
| Database Managers: PostgreSQL, MySQL, MariaDB, MongoDB, RethinkDB | |
| Others: Docker, Kubernetes, Quantum Computing, Blockchain, Graphql, GIT, Vim, React js, Vue js, Ruy on rails, Flask, Artificial Intelligence, Parallel and Distributed Computing, Re |
This file contains hidden or 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
| // Wifi Credentials | |
| const WIFI_NAME = "YOURSSID"; | |
| const WIFI_PASS = "YOURPASS"; | |
| // Your location latitude and longitude | |
| const lat = 'YOURLAT'; | |
| const lon = 'YOURLON'; | |
| // Required libs |
This file contains hidden or 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
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
This file contains hidden or 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
| #! /bin/sh | |
| usage_error () { | |
| echo 'Usage: sh migrator.sh <path to sqlite_to_postgres.py> <path to sqlite db file> <an empty dir to output dump files>' | |
| echo | |
| echo 'Example:' | |
| echo '>sh migrator.sh sqlite_to_postgres.py ~/reviewboard.db /tmp/dumps' | |
| echo | |
| echo 'Tested on:' | |
| echo 'Python 2.7.3' |