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
| let jspdf = document.createElement( "script" ); | |
| jspdf.onload = function () { | |
| let pdf = new jsPDF(); | |
| let elements = document.getElementsByTagName( "img" ); | |
| for ( let i in elements) { | |
| let img = elements[i]; | |
| if (!/^blob:/.test(img.src)) { | |
| continue ; | |
| } | |
| let canvasElement = document.createElement( 'canvas' ); |
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
| MIT License | |
| Copyright (c) 2022 Builders | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
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
| # Password must be at least 10 characters and atmost 24 long and contain at least one uppercase letter, one lowercase letter, one number and one special character" | |
| /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{10,24}$/ |
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 main | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "encoding/base64" | |
| "fmt" | |
| "math/rand" | |
| "os/exec" | |
| "strconv" |
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 install man |
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
| const net = require('net'); | |
| const { URL } = require('url'); | |
| const io = new net.Server(); | |
| io.on('connection', (connection) => { | |
| console.log('Client connected') | |
| connection.on('data', (info) => { | |
| const requestData = info.toString().split('\n'); |
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
| { | |
| "basics": { | |
| "name": "Jyotirmoy Bandyopadhayaya", | |
| "label": "Software Developer / Penitraion Tester", | |
| "image": "https://safe.b68dev.xyz/89U4uGLG.png", | |
| "email": "hi@b68.dev", | |
| "phone": "+91 6291559872", | |
| "url": "https://b68.dev", | |
| "summary": "Speaker | CPTS | CEHv12 | DevSecOps | Security Researcher | ex-Tech Lead GDSC LPU | ex-SDE intern @SaaSDen | CTF Player", | |
| "location": { |
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
| { | |
| "Regions": { | |
| "1": { | |
| "RegionID": 1, | |
| "RegionCode": "IND", | |
| "RegionName": "INDIA", | |
| "Nodes": [ | |
| { | |
| "Name": "Airtel", | |
| "RegionID": 1, |
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
| @font-face { | |
| font-family: 'Rock Salt'; | |
| font-style: normal; | |
| font-weight: normal; | |
| font-display: swap; | |
| src: url('https://safe.b68dev.xyz/7HhQ9ead.woff2') | |
| format('woff2'); | |
| unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, | |
| U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; | |
| } |
OlderNewer