Skip to content

Instantly share code, notes, and snippets.

View Lalatenduswain's full-sized avatar

Lalatendu Keshari Swain Lalatenduswain

View GitHub Profile
@Lalatenduswain
Lalatenduswain / all.txt
Created June 20, 2023 17:39 — forked from jhaddix/all.txt
all wordlists from every dns enumeration tool... ever. Please excuse the lewd entries =/
This file has been truncated, but you can view the full file.
.
..
........
@
*
*.*
*.*.*
🐎

Keybase proof

I hereby claim:

  • I am lalatenduswain on github.
  • I am lalatenduswain (https://keybase.io/lalatenduswain) on keybase.
  • I have a public key ASCQae6LVxz0tp1neONQNTbc4u6_rvuiP8-FNIy8q2Y3zQo

To claim this, I am signing this object:

@Lalatenduswain
Lalatenduswain / .htaccess
Created April 12, 2022 06:02 — forked from vielhuber/.htaccess
Apache: htaccess force www and https ssl #server
# force HTTPS and www.
RewriteEngine On
RewriteCond %{HTTP_HOST} (?!^www\.)^(.+)$ [OR]
RewriteCond %{HTTPS} off
RewriteRule ^ https://www.%1%{REQUEST_URI} [R=301,L]
# alternative way
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]