- Erlang 20.2.2
- RabbitMQ 3.7.3
- Pika 0.11.2
- SSL certs generated by
michaelklishin/tls-gen"basic" profile
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
| import React, { Component } from 'react'; | |
| import { BrowserRouter as Router, Route, Link } from "react-router-dom"; | |
| import { Layout, Menu, Icon } from 'antd'; | |
| import Dashboard from './containers/Dashboard/Dashboard'; | |
| import Meseros from './containers/Meseros/Meseros'; | |
| const { Header, Content, Footer, Sider } = Layout; | |
| const SubMenu = Menu.SubMenu; |
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
| If you are looking to build Nmap from GitHub and/or test pull requests you can | |
| use the instructions below. Note that they are not tailored towards those who | |
| will be modifying the code or creating pull requests themselves. | |
| Note: The Nmap GitHub repository is a mirror of the official Nmap Subversion | |
| repository which is considered the 'source of truth' for the Nmap | |
| codebase. | |
| Getting the code |
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
| package proxy | |
| import ( | |
| "io" | |
| "net" | |
| "sync" | |
| log "github.com/Sirupsen/logrus" | |
| ) |
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/bash | |
| sudo apt-get install git python-pip make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev curl | |
| sudo pip install virtualenvwrapper | |
| git clone https://github.com/yyuu/pyenv.git ~/.pyenv | |
| git clone https://github.com/yyuu/pyenv-virtualenvwrapper.git ~/.pyenv/plugins/pyenv-virtualenvwrapper | |
| echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc | |
| echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc |
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
| #!/usr/bin/env python | |
| """ | |
| MS12-020/CVE-2012-0002 Vulnerability Tester | |
| based on sleepya's version @ http://pastebin.com/Ks2PhKb4 | |
| """ | |
| import socket | |
| import struct | |
| import sys |