This file has been truncated, but you can view the full file.
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: 0trace | |
| Status: install ok installed | |
| Priority: optional | |
| Section: net | |
| Installed-Size: 43 | |
| Maintainer: Kali Developers <[email protected]> | |
| Architecture: amd64 | |
| Version: 0.01-3kali1 | |
| Depends: libc6 (>= 2.7), tcpdump | |
| Description: A traceroute tool that can run within an existing TCP connection. |
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
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
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
| #netselect-apt | |
| deb http://mirror.0x.sg/debian stable main contrib non-free⏎ |
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
| # -*- coding: utf-8 -*- | |
| # _______ _ _______ _ | |
| # |\ /|( ____ \ ( ( /|( ___ )( ( /| | |
| # ( \ / )| ( \/ | \ ( || ( ) || \ ( | | |
| # \ (_) / | (__ _____ | \ | || | | || \ | | | |
| # ) _ ( | __)(_____)| (\ \) || | | || (\ \) | | |
| # / ( ) \ | ( | | \ || | | || | \ | | |
| # ( / \ )| (____/\ | ) \ || (___) || ) \ | | |
| # |/ \|(_______/ |/ )_)(_______)|/ )_) | |
| # |
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
| # Use with Debian Stable/stretch repositories. Set as default for antiX-17. Note new repos | |
| #deb http://iso.mxrepo.com/antix/stretch stretch main | |
| deb http://mirror.0x.sg/mx-workspace/antix/stretch stretch main | |
| #deb-src http://iso.mxrepo.com/antix/stretch stretch main |
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
| gpg --keyserver keyserver.ubuntu.com --recv-key 8771ADB0816950D8 && gpg -a --export 8771ADB0816950D8 | sudo apt-key add - |
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
| /* | |
| Guide from xe-non to P-Use | |
| */ | |
| #include <WiFi.h> | |
| #include <HTTPClient.h> | |
| const char *ssid = "REPLACE_WITH_YOUR_SSID"; | |
| const char *password = "REPLACE_WITH_YOUR_PASSWORD"; |
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, { useState, useEffect } from 'react' | |
| import axios from 'axios' | |
| // @material-ui/core components | |
| import { makeStyles } from '@material-ui/core/styles' | |
| import authHeader from '../assets/jss/services/auth-header' | |
| //import Grid from '@material-ui/core/Grid' | |
| // @material-ui/icons | |
| // core components | |
| import CardComponent from './card.component' |
OlderNewer
