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

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

👤Admins:
🆔 @The404HackingAdmins

💻 @MultiHackingTools Project
Download Telegram
💥 فهرست #کد های #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
💥 فهرست #کد های #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
💥 فهرست #کد های #Hello_World به زبان های مختلف #برنامه_نویسی

📌 #programming #programmer #hello_world #code

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

EQU CR = #0D ; carriage return
EQU PROUT = #xxxx ; character output routine
;
LD HL,MSG ; Point to message
;
PRLOOP LD A,(HL) ; read byte from message
AND A ; set zero flag from byte read
RET Z ; end of text if zero
JSR PROUT ; output char
INC HL ; point to next char
JR PRLOOP ; repeat
;
MSG DB "Hello, world!",CR,00
;

💻 Language:
#Assembly - #Z80

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

1⃣
Msgbox, Hello, World!

2⃣
Traytip,, Hello, World!

💻 Language:
#AutoHotkey

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

Msgbox(64, "", "Hello, World!")

💻 Language:
#AutoIt

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

BEGIN { print "Hello, World!" }

💻 Language:
#AWK

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

print "Hello, World!"

💻 Language:
#Basic

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

1⃣
echo "Hello, World!"

2⃣
msg * "Hello, World!"

💻 Language:
#Batch

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

GET "LIBHDR"

LET START() BE
$(WRITES("Hello, world!*N")
$)

💻 Language:
#BCPL

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

+++++ +++++ initialize counter (cell #0) to 10
[ use loop to set the next four cells to 70/100/30/10
> +++++ ++ add 7 to cell #1
> +++++ +++++ add 10 to cell #2
> +++ add 3 to cell #3
> + add 1 to cell #4
<<<<- decrement counter (cell #0)
]
> ++. print 'H'
> +. print 'e'
+++++ ++. print 'l'
. print 'l'
+++. print 'o'
> ++. print ' '
<<+++++ +++++ +++++. print 'W'
>. print 'o'
+++. print 'r'
---- -. print 'l'
---- ---. print 'd'
> +. print '!'
>. print '\n'

💻 Language:
#BrainFuck

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

# include <iostream>
using namespace std;
int main()
{
cout <<"Hello, World!" <<endl;
return 0;
}

💻 Language:
#C++

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

# include <stdio.h>

int main(int argc, char *argv[])
{
printf("Hello, world!\n");

return 0;
}

💻 Language:
#C

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

# include <iostream>
using namespace std;
int main()
{
cout <<"Hello, world!" <<endl;
return 0;
}

💻 Language:
#C++

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

using System;
class Program
{
public static void Main()
{
Console.WriteLine("Hello, world!");
Console.ReadKey(true);
}
}

💻 Language:
#C_Sharp (C#)

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

.assembly Hello {}
.assembly extern mscorlib {}
.method static void Main()
{
.entrypoint
.maxstack 1
ldstr "Hello, world!"
call void [mscorlib]System.Console::WriteLine(string)
call string[mscorlib]System.Console::ReadKey(true)
pop
ret
}

💻 Language:
#Common_Intermediate_Language

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

"HELLO, WORLD!"

💻 Language:
#Casio_Basic

📌 Hashtag: #Hello_World

🆔 @The404Hacking
💥 #برنامه_نویس و #برنامه_نویسی

📌 #programmer #programming

روز #برنامه_نویس و #برنامه_نویسی بر همه برنامه نویسان مبارک باد.

🛡مرجع آموزش امنیت دیجیتال
🆔 @The404Hacking
💥 #خبر | #جاوا

📌 #news #java #programming

22 سال پیش در چنین روزی، اولبن نسخه از زبان #برنامه_نویسی جاوا منتشر شد.

🛡مرجع آموزش امنیت دیجیتال
🆔 @The404Hacking
💥زبان #برنامه_نویسی

📌 #programming

برای رسیدن به هدفم، کدام زبان برنامه نویسی مناسب من است؟

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

🌀ویرایشگر و IDE حرفه ای

یک محیط برنامه نویسی حرفه ای برای زبان های برنامه نویسی

🔐Password:
@The404Hacking


📌 Tags: #activestate #komodo #ide #idle #editor #programming #ویرایشگر #برنامه_نویسی

🛡حامی هک اخلاقی در ایران
🆔 @The404Hacking