Skip to content

Instantly share code, notes, and snippets.

@saravanaskanda
saravanaskanda / it-ebooks.md
Created September 5, 2024 13:34 — forked from baiwfg2/it-ebooks.md
Download ebooks as you want
@saravanaskanda
saravanaskanda / 1_top+hacker_methodologies.md
Created January 8, 2024 07:54 — forked from ruevaughn/1_top+hacker_methodologies.md
Hacker Methodologies & Tools (NEW)

The Top Hacker Methodologies & Tools Notes

Nuclei Templates

Concrete5 CMS : Identification, Mass Hunting, Nuclei Template Writing & Reporting


---
# Page meta info, like heading, footer text and nav links
pageInfo:
title: Dashy
description: Welcome to your new dashboard!
navLinks:
- title: GitHub
path: https://github.com/Lissy93/dashy
- title: Documentation
path: https://dashy.to/docs
@saravanaskanda
saravanaskanda / http_server_auth.py
Created April 13, 2023 07:46 — forked from mauler/http_server_auth.py
Python3 http.server supporting basic HTTP Auth (username/password)
# Extended python -m http.serve with --username and --password parameters for
# basic auth, based on https://gist.github.com/fxsjy/5465353
from functools import partial
from http.server import SimpleHTTPRequestHandler, test
import base64
import os
class AuthHTTPRequestHandler(SimpleHTTPRequestHandler):
@saravanaskanda
saravanaskanda / stretch-preseed.txt
Created March 6, 2023 08:29 — forked from chuckn246/stretch-preseed.txt
Debian Preseed with Encrypted LVM
#### Contents of the preconfiguration file (for stretch)
### Localization
# Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US
# Keyboard selection.
d-i keyboard-configuration/xkb-keymap select us
# d-i keyboard-configuration/toggle select No toggling
### Network configuration
@saravanaskanda
saravanaskanda / Blog: Installing Docker.md
Created February 10, 2022 05:21 — forked from sshushliapin/Blog: Installing Docker.md
Docker in PowerShell on Windows 10

Using Docker on Windows 10 (AU)

There are a lot of good reasons to use Docker. Right now, my reason is that I need to work with PowerShell on Linux, and with Windows 10 anniversary update, Windows containers now support Nano Server as well (which is the other logical place to test the new open source PowerShell).

Currently, Docker supports running Linux images or Windows images in their container service, but not both in the same server, so to get both, we need to first install Docker using the installer, (which handles dependencies like requiring Hyper-V and Containers) and then install the most recent version of the Windows service separately, and configure them to run together.

Start by installing the Linux Container server

Here's a full explanation, but you could just [run the whole script](#file-install-d

@saravanaskanda
saravanaskanda / Ubuntu_Vagrant_libvirt.md
Created January 11, 2022 10:31 — forked from PaulNeumann/Ubuntu_Vagrant_libvirt.md
How to Install the Vagrant libvirt Provider on Ubuntu 20.04.1 LTS Desktop or Server

How to Install the Vagrant libvirt Provider on Ubuntu 20.04.1 LTS Desktop or Server

This document describes how to install the Vagrant libvirt provider on Ubuntu 20.04.1 LTS Desktop or Server. Much of the content is based on a blog post by Philippe Vanhaesendonck of Oracle Corp. describing how to set up the Vagrant libvirt provider on Oracle Linux.

All of the commands shown should be run in a terminal window or SSH session.

Before You Start

Verify That Your CPU Supports Hardware Virtualization