Skip to content

Instantly share code, notes, and snippets.

View ricardomaia's full-sized avatar
:octocat:
/** No comments */

Ricardo Maia ricardomaia

:octocat:
/** No comments */
View GitHub Profile
@cihanmehmet
cihanmehmet / subdomain_wordlist.md
Last active March 26, 2024 03:12
Subdomain Wordlist
@alexishida
alexishida / rtsp-intelbras-outros.txt
Last active April 5, 2024 17:34
RTSP dvr intelbras e outros
-------- Intelbras -------------------------------------------------------
rtsp://usuário:senha@ip:porta/cam/realmonitor?channel=1&subtype=0
-------- Luxvision -------------------------------------------------------
rtsp://ip:porta/user=[usuário]&password=[senha]&channel=1&stream=0.sdp
-------- Hikvision -------------------------------------------------------
rtsp://usuário:senha@ip:porta/Streaming/Channels/102
@michaelbourne
michaelbourne / x-responsive-timeline.css
Created April 25, 2018 22:02
Responsive Cornerstone Timeline
@media (min-width: 768px){
.timeline {
position: relative;
z-index: 1;
}
.timeline::before {
content:"";
position: absolute;
z-index: 1;
top: 0;
@michaelbourne
michaelbourne / x-transparent-fixed-header.js
Created April 25, 2018 22:01
Transparent Fixed Header (Opaque on Scroll)
jQuery(document).ready(function($){
// Detect if this is a hero image page by looking for the #heroimage ID
if( $('#heroimage').length ){
// get the value of the bottom of the #heroimage element by adding the offset of that element plus its height, set it as a variable
var mainbottom = $('#heroimage').offset().top + $('#heroimage').outerHeight(true);
$(window).on('scroll',function(){
var stop = Math.round($(window).scrollTop());
// If the use has scrolled past the bottom of the hero image
@michaelbourne
michaelbourne / x-transparent-fixed-header.css
Created April 25, 2018 22:00
Transparent Fixed Header (Opaque on Scroll)
/** set up our navbar, and position it fixed so there is no white gap above the CS content **/
.x-navbar {
border: none;
box-shadow: none;
transition: background 0.7s ease-out;
background: transparent!important;
position: fixed;
z-index: 1030;
top: 0;
@shivadvg19
shivadvg19 / Bow_tfidf.py
Created October 16, 2017 05:50
python3 implementation of Bagofwords and TF-IDF models for text processing
''' Feature Extraction using TF-IDF this code is python3 implementation of source code included in Text Analytics with Python'''
CORPUS = [
'the sky is blue',
'sky is blue and sky is beautiful',
'the beautiful sky is so blue',
'i love blue cheese'
]
new_doc = ['loving this blue sky today']
@dave5623
dave5623 / example.sct
Created January 18, 2017 04:37
SCT File Obfuscation Examples:
<?XML version="1.0"?>
<scriptlet>
<registration
progid="PoC"
classid="{F0001111-0000-0000-0000-0000FEEDACDC}" >
<!-- Proof Of Concept - Casey Smith @subTee -->
<!-- License: BSD3-Clause -->
<script language="JScript">
<![CDATA[
//x86 only. C:\Windows\Syswow64\regsvr32.exe /s /u /i:file.sct scrobj.dll
@mike10004
mike10004 / README.md
Last active February 12, 2024 17:52
Reverse Shell Using Python
@atcuno
atcuno / gist:3425484ac5cce5298932
Last active March 25, 2024 13:55
HowTo: Privacy & Security Conscious Browsing

The purpose of this document is to make recommendations on how to browse in a privacy and security conscious manner. This information is compiled from a number of sources, which are referenced throughout the document, as well as my own experiences with the described technologies.

I welcome contributions and comments on the information contained. Please see the How to Contribute section for information on contributing your own knowledge.

Table of Contents

@magnetikonline
magnetikonline / README.md
Last active February 12, 2024 00:13
BIND - delegate a sub domain for a zone.

BIND - delegate a sub domain for a zone

The scenario:

  • DNS zone myzone.com defined in BIND.
  • Authoritative name server at 123.16.123.1.
  • Subzone sub.myzone.com with an authoritative name server at 123.16.123.10.
  • Wishing to forward sub-zone to authoritative name server.

Config