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

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