The404Hacking | امنیت سایبری
982 subscribers
245 photos
33 videos
328 files
266 links
🛡 #The404Hacking
💻Digital Security ReSearch Team

☣️مرجع کامل آموزش هک و امنیت
آموزش امنیت دیجیتال-سایبری
📹ویدیوها و 📚مقالات آموزشی
💻ابزارهای تست نفوذ
⭕️تست نفوذ برپایه قوانین VD3

👤Admins:
🆔 @The404HackingAdmins

💻 @MultiHackingTools Project
Download Telegram
💥 #آموزش #بایپس #ایرانسل_من

📌 #learning #bypass #myirancell #irancell #internet

1⃣ گوشیتونو روت کنین.

2⃣ از #گوگل_پلی ، #Mac_Spoofer و #Xposed رو نصب کنین.

3⃣ #ایرانسل_من رو نصب کنین و نت رو که گرفتین پاکش کنین.

4⃣ از توی #Mac_Spoofer بار #مک رو عوض کنید و #Apply رو بزنین.

5⃣ گوشی رو #Restart کنید و دوباره مای ایرانسل رو نصب کنین.

1 #گیگ #اینترنت با سرعت فوق العاده !

🌹 #GhostSecurity
🆔 @The404Hacking
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

⎕←'Hello world!'

💻 Language:
#APL

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💥 #دانلود #سیستم_عامل #لینوکس #ابونتو

📌 #dl #download #os #operating_system #linux #ubuntu

📥 Download 32 Bit:
📍 Click Here

📥 Download 64 Bit:
📍 Click Here

📂 File Type: .ISO
🕹 Size (32 Bit): 1.52GB
🖲 Size (64 Bit): 1.5GB

🆔 @The404Hacking
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

A_CR = $0D ;carriage return
BSOUT = $FFD2 ;kernel ROM sub, write to current output device
;
LDX #$00 ;starting index in.X register
;
LOOP LDA MSG,X ;read message text
BEQ LOOPEND ;end of text
;
JSR BSOUT ;output char
INX
BNE LOOP ;repeat
;
LOOPEND RTS ;return from subroutine
;
MSG.BYT 'Hello, world!',A_CR,$00

💻 Language:
#Assembly Language
#MOS_Technology_6502
#CBM_KERNEL

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💥 برنامه #دامپ کردن #کمبولیست | تمام #ورژن ها

📌 #dump #combo #combolist

📥 #Download #Link (s):
📍 4 #Server

#دانلود به صورت یک جا از 4 #سرور :

1⃣ MediaFire: Click Here
2⃣ PicoFile: Click Here
3⃣ 4Shared: Click Here
4⃣ UpLoadBoy: Click Here

📍 Download All Version: Click Here

🔐 Password: @The404Hacking

🆔 @The404Hacking
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

; The output file is 22 bytes.
; 14 bytes are taken by "Hello, world!$
;
; Written by Stewart Moss - May 2006
; This is a.COM file so the CS and DS are in the same segment
;
; I assembled and linked using TASM
;
; tasm /m3 /zn /q hello.asm
; tlink /t hello.obj

.model tiny
.code
org 100h

main proc

mov ah,9 ; Display String Service
mov dx,offset hello_message ; Offset of message (Segment DS is the right segment in.COM files)
int 21h ; call DOS int 21h service to display message at ptr ds:dx

retn ; returns to address 0000 off the stack
; which points to bytes which make int 20h (exit program)

hello_message db 'Hello, world!$'

main endp
end main

💻 Language:
#Assembly - x86 Dos

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💖 به نام خدا

💥 پیشنهاد فروش بزرگترین پکیج هکینگ در تلگرام

📚 0 تا 100 هک
حجم پکیج 40GB
📤 ارسال پکیج بعد از پرداخت
📂 به صورت فایل در تلگرام

🔒 پکیج کامل شخصی | Private !

😉 سوالات و مشاوره در مورد پکیج آموزشی از طریق آیدی های زیر امکان پذیر است!

🔆همچنین برای دریافت سرفصل ها پکیج نیز از طریق آیدی های زیر اقدام کنید.

🆔 @Sir4m1R
🆔 @BLASTER

🤖 Bot: @MrHiddenRoBot

💰 درگاه پرداخت:
🌐 http://opizo.com/w4LHwQ

🛡 @The404Hacking
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

; The output file is 22 bytes.
; 14 bytes are taken by "Hello, world!$
;
; Written by Stewart Moss - May 2006
; This is a.COM file so the CS and DS are in the same segment
;
; I assembled and linked using TASM
;
; tasm /m3 /zn /q hello.asm
; tlink /t hello.obj

.model tiny
.code
org 100h

main proc

mov ah,9 ; Display String Service
mov dx,offset hello_message ; Offset of message (Segment DS is the right segment in.COM files)
int 21h ; call DOS int 21h service to display message at ptr ds:dx

retn ; returns to address 0000 off the stack
; which points to bytes which make int 20h (exit program)

hello_message db 'Hello, world!$'

main endp
end main

💻 Language:
#Assembly - x86 Dos

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

; This program displays "Hello, World!" in a windows messagebox and then quits.
;
; Written by Stewart Moss - May 2006
;
; Assemble using TASM 5.0 and TLINK32
;
; The output EXE is standard 4096 bytes long.
; It is possible to produce really small windows PE exe files, but that
; is outside of the scope of this demo.

.486p
.model flat,STDCALL
include win32.inc

extrn MessageBoxA:PROC
extrn ExitProcess:PROC

.data

HelloWorld db "Hello, world!",0
msgTitle db "Hello world program",0

.code
Start:
push MB_ICONQUESTION + MB_APPLMODAL + MB_OK
push offset msgTitle
push offset HelloWorld
push 0
call MessageBoxA

push 0
call ExitProcess
ends
end Start

💻 Language:
#Assembly - x86 Windows 32 Bit

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💥 #اکانت_رایگان HMA

📌 #Free_Account HMA

〽️User : zh02322
🔐Pass : 84turqyq

From: #EsiD4nger
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

😉Hello World | هر روز یک سلام دنیا

.section .rodata
string:
.ascii "Hello, world!\n\0"
length:
.quad. -string #Dot = 'here'

.section .text
.globl _start #Make entry point visible to linker
_start:
movq $4, %rax #4=write
movq $1, %rbx #1=stdout
movq $string, %rcx
movq length, %rdx
int $0x80 #Call Operating System
movq %rax, %rbx #Make program return syscall exit status
movq $1, %rax #1=exit
int $0x80 #Call System Again

💻 Language:
#Assembly - x86-64 Bit - #Linux
AT&T

📌 Hashtag: #Hello_World

🆔 @The404Hacking
Virtual Number Application Link(@The404Hacking).txt
1.6 KB
💥 #لینک #دانلود برنامه های ساخت #شماره_مجازی

📌 #link #dl #download #virtual #number

لینک ها همه در فایل #txt بالا ... !

📍تعداد: 19

🆔 @The404Hacking
💥 #دانلود برنامه اتصال به #vps در #اندروید

📌 #microsoft #remote #desktop #vps #dl #download #android #connect #connection

📥 Download:

1⃣ Download from PicoFile
2⃣ Download from MediaFire
3⃣ Download from UpLoadBoy
4⃣ Download from 4Shared

🌹مرجع آموزش امنیت دیجیتال
🆔 @The404Hacking
💥به پیام ظاهر شده مبنی بر به روز رسانی فلش پلیر اعتماد نکنید❗️

📌 #flash_player #update #error

🔶بسیاری از کاربران اینترنت زمانی که مشغول پیمایش صفحات وب سایت های مختلف هستند با پیام های جعلی مبنی بر به روز رسانی فلش پلیر مواجه می شوند.

🔶با به روز رسانی از طریق پیام ظاهر شده در اکثر موارد صفحه خانگی مرورگر به صفحه دیگری تغییر میابد و نرم افزاری با نام PC Optimizer Pro بر روی سیستم نصب می شود در واقع این برنامه به کاربر چند وب سایت که ارائه دهنده برنامه های مختلف هستند پیشنهاد می دهد که اکثر این برنامه ها پولی بوده و در صورتی که کاربر اطلاعات کارت بانکی خود را وارد کند اطلاعاتش سرقت می شود.

💊💊در مقابله با این نوع کلاهبرداری ها چه کنیم⁉️

در صورت دریافت چنین پیام هایی حتما به وب سایت ادوبی مراجعه کنید و در صورتی که می خواهید فلش پلیر خود را به روز رسانی کنند از طریق این سایت اقدام نمایید..
به پیام های ظاهر شده مبنی بر به روز رسانی فلش پلیر اعتماد نکنید و در صورتی که نرم افزار مشکوکی را دانلود کردید به هیچ عنوان آن را بر روی سیستم خود نصب نکنید.

منبع: سایت مقاله کامپیوتر

🛡مرجع آموزش امنیت دیجیتال
🆔 @The404Hacking