Skip to content

Instantly share code, notes, and snippets.

View gokaybiz's full-sized avatar
🌪️
Focusing

Gökay Biz gokaybiz

🌪️
Focusing
View GitHub Profile
@gokaybiz
gokaybiz / main.js
Last active March 4, 2019 18:19
Simple nodejs http server and api request
let log = console.log,
port = process.env.port || 8081
const http = require("http"),
web = http.createServer(
(req, res) => {
log(`Istek geldi: |${req.method}| ${req.url}`)
if (req.url == '/uzat') {
let todos = http.request({
@gokaybiz
gokaybiz / adsController.class.js
Last active July 23, 2023 17:03
Iframe onclick
/**
* Usage:
* try {
* var Advert = new Advert('adscontainer1', 'https://google.com.tr/');
* Advert.willClick().isOnHover();
* } catch(success) {
* location = success;
* }
*
**/
@gokaybiz
gokaybiz / contact.gs
Created July 16, 2017 08:54
Contact form with Google Scripts
var secret = '<recaptcha_secret>';
var tomail = '<mail>@gmail.com';
function doGet(e) {
return ContentService.createTextOutput('Hayirdir?');
}
function doPost(e) {
var captchakey = (e.parameters.captcha) || "";
var name = (e.parameters.name) || "";
@gokaybiz
gokaybiz / linktl.api.php
Last active June 4, 2017 12:39
Link.tl bypass
<?php
function linktlCURL($link, $ref) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$link);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_COOKIE, "ads_impression=19; ads_impression3=19;");
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36");
$ret = curl_exec($ch);