The404Hacking | امنیت سایبری
982 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 | هر روز یک سلام دنیا

BEGIN
DISPLAY ("Hello, world!");
END.

💻 Language:
#ALGOrithmic

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

print("Hello, World!")

💻 Language:
#ALGOL_68

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

PROC main()
WriteF('Hello, world!')
ENDPROC

💻 Language:
#Amiga_E

📌 Hashtag: #Hello_World

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

📌 #programming #programmer #hello_world #code

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

⎕←'Hello world!'

💻 Language:
#APL

📌 Hashtag: #Hello_World

🆔 @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
💥 فهرست #کد های #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 | هر روز یک سلام دنیا

; 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
💥 فهرست #کد های #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