هک | hack
269 subscribers
15 photos
24 videos
13 files
9 links
Download Telegram
آموزش گذاشتن چند تبلیغ به صورت تصادفی در سایت :

کد زیر حاویه چندین کد هست که هر سری یکی از اون ها رو به نمایش در میاره
<script> kod = new Array();
kod[0] = 'Youre Code a';
kod[1] = 'Youre Code b';
kod[2] = 'Youre Code c';
kod[3] = 'Youre Code d';
kod[4] = 'Youre Code e';
ShowCode = Math.floor(Math.random() * kod.length);
document.write(kod[ShowCode]);
</script>

شماره های 0 تا 4 که در داخل کروشه ([]) قرار دارد نباید تکراری باشه و باید به همین ترتیب ادامه پیدا کند و شماره ها بیشتر بشوند.به جای Youre Code هم باید کد خودتون رو بزارید. هر کدام از اون ها یک کد مجزا هستند.
حال ما میخواهیم با این کدی که ساختیم چندین بنر تبلیغاتی و و با هر رفرش یکی از اون ها رو به نمایش در بیاریم. برای این کار به جای کلمه Youre Code کد زیر با لینک های مختلف قرار میدهیم.
<a href="آدرس_سایت"><img src="آدرس_بنر_تبلیغاتی" /></a>

@hackarsham
comp.rar
88.3 MB
پکیج کامل

@hackarsham
هک | hack pinned a photo
هک | hack
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها ‌(کارت ها خالیه و امکان برداشت نیست) 4895041583524248, 555, 10/2025, Visa 4895041505563654, 456, 04/2024, Visa 4895041527456218, 954, 01/2022, Visa 4895041578385803, 225…
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها ‌(کارت ها خالیه و امکان برداشت نیست)

4957273646156701|07|2026|606|Visa
4957273601306572|08|2024|987|Visa
4957273653486538|02|2025|913|Visa
4957273683763666|03|2025|289|Visa
4957273670078870|10|2026|402|Visa
4957273635066283|12|2022|733|Visa
4957273657374656|11|2026|995|Visa
4957273665256820|12|2024|905|Visa
4957273668678103|12|2024|603|Visa
4957273641164387|10|2024|765|Visa

ترتیب :
شماره کارت ، سی وی وی دو ، تاریخ انقضا . رمز رو میتونید موقع ثبت هرچی انتخاب کنید

@hackarsham
ساخت دکمه لینکدار :

<style>

body {

text-align: center;

direction: rtl;

font-family: tahoma;

}



a.button {

display: inline-block;

padding: 0.5em 2em;

background-color: #088;

color: #fff;

text-decoration: none;

border-radius: 0.2em;

border-bottom: 2px solid #044;

}



a.button:hover {

background-color: #0aa;

border-bottom-color: #088;

}

</style>



<a href="https://t.me/hackarsham" class="button">ورود به کانال</a>

@hackarsham
👍2
صفحه دسترسی به اطلاعات ربات :
https://bot-tel.sevenserver.pw (بسته شد)
#امنیت_ناکامل_ربات

@hackarsham
فرم ثبت نام و ورود

@hackarsham
کد های css

<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<style type="text/css">
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
.form-container {
margin: 20px;
padding: 15px;
background: #173459;
color: white;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
}
.input-cnt {
display: flex; /* display the icon and the input in a line */
margin-bottom: 15px;
}
.input-cnt:last-child {
margin-bottom: 0px;
}
.input-cnt > i {
min-width: 40px; /* set a minimum width for the icon */
padding: 10px; /* make sure the icon is centered vertically */
text-align: center; /* horizontally center the icon */
background: lightgrey;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
color: #0076ff;
}
/* change styles when focused */
.input-cnt:hover > i {
background: #0076ff;
color: white;
}
/* style the inputs */
.input-cnt > input[type="text"], .input-cnt > input[type="password"] {
outline: none;
border: none;
padding: 10px;
border: 1px solid lightgrey;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
width: 100%;
}
/* style the submit button */
.input-cnt > input[type="submit"] {
border: none;
border-radius: 20px;
outline: none;
width: 75%;
margin: 0 auto;
font-size: 105%;
padding: 8px;
color: #0076ff;
background: white;
transition-duration: .5s;
}
/* add a hover effect for the submit button */
.input-cnt > input[type="submit"]:hover {
color: white;
background: #0076ff;
}
</style>


کد های html

<h2 style="text-align: center"> ثبت نام </h2>
<div class="form-container">

<form action="#">

<div class="input-cnt">
<i class="material-icons">person</i>
<input type="text" placeholder="نام" name="name" />
</div>

<div class="input-cnt">
<i class="material-icons">face</i>
<input type="text" placeholder="نام کاربری" name="username" />
</div>

<div class="input-cnt">
<i class="material-icons">email</i>
<input type="text" placeholder="ایمیل" name="email" />
</div>

<div class="input-cnt">
<i class="material-icons">lock</i>
<input type="password" placeholder="پسورد" name="password" />
</div>

<div class="input-cnt">
<input type="submit" value="ثبت" />
</div>

</form>

</div>

<h2 style="text-align: center"> ورود </h2>
<div class="form-container">

<form action="#">

<div class="input-cnt">
<i class="material-icons">person</i>
<input type="text" placeholder="ایمیل یا نام کاربری" name="email" />
</div>

<div class="input-cnt">
<i class="material-icons">lock</i>
<input type="password" placeholder="پسورد" name="password" />
</div>

<div class="input-cnt">
<input type="submit" value="ورود" />
</div>

</form>

</div>


@hackarsham
2
هک | hack
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها ‌(کارت ها خالیه و امکان برداشت نیست) 4957273646156701|07|2026|606|Visa 4957273601306572|08|2024|987|Visa 4957273653486538|02|2025|913|Visa 4957273683763666|03|2025|289|Visa…
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها ‌(کارت ها خالیه و امکان برداشت نیست)

5522898810304050|01|2024|748|MasterCard
5522894557825753|10|2024|255|MasterCard
5522893734204320|12|2022|308|MasterCard
5522896508401600|07|2023|564|MasterCard
5522894705051245|03|2026|265|MasterCard
5522895641778338|06|2026|896|MasterCard
5522897608881170|05|2023|502|MasterCard
5522897107602721|06|2022|402|MasterCard
5522892586767285|05|2022|600|MasterCard
5522896273851211|02|2025|163|MasterCard

ترتیب :
شماره کارت ، تاریخ انقضا ، سی وی وی دو . رمز رو میتونید موقع ثبت هرچی انتخاب کنید

@hackarsham
This media is not supported in your browser
VIEW IN TELEGRAM
کد باز و بسته کردن تصویر ، رنگ ، متن و...

<style type="text/css">
div#demo {
width: 300px;
height: 300px;
background: #173459;

opacity: 1; /* default */
display: block; /* default */

/* this will animate the element for 1
second when its properties change *
transition: all 1s;
}
</style>
👆👇
<div id="demo"></div>
<div>
<button onclick="fadeOut()"> بستن </button>
<button onclick="fadeIn()"> بازکردن </button>
</div>

<script>
function fadeOut() {
var elem = document.getElementById("demo");

elem.style.opacity = 0;
setTimeout(function() {
elem.style.display = "none";
}, 1000);
}

function fadeIn() {
var elem = document.getElementById("demo");

elem.style.display = "block";

// wait a little bit before setting opacity to 1
setTimeout(function() {
elem.style.opacity = 1;
}, 10);
}
</script>

@hackarsham`
👍4
کد های نرخ ، با قرار دادن این کد ها میتوانید اجناس یا.... هر چیز دیگه ای اسمش رو قرار بدید و یک قیمت به دلار یا ریال یا.... بزارید تا وقتی کاربر روی اسم اون کلیک میکنه براش قیمتش بیاد :

<label> یک میوه را انتخاب کنید
<select id="fruits" onchange="checkPrice()">
<option value="apple"> apple </option>
<option value="banana"> banana </option>
<option value="cherry"> cherry </option>
<option value="mango"> mango </option>
<option value="orange"> orange </option>
<option value="strawberry"> strawberry </option>
</select>
</label>
<p id="price"></p>

<script>
function checkPrice() {
var fruit = document.getElementById("fruits").value;
switch(fruit) {
case "apple":
var amount = "$1.92"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "banana":
var amount = "$2.32"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "mango":
var amount = "$3.11"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "orange":
var amount = "$2.87"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
default:
document.getElementById("price").innerHTML = "Sorry for the inconveniences, " + fruit + " is currently not available.";
}
}
</script>

@hackarsham
@HACKARSHAM.htm
176.6 KB
در ویرایشگر باز کنید
@hackarsham