Search found 63 matches

by cxAlex
Mon Mar 18, 2013 4:54 pm
Forum: Applications - Feedback and Discussion
Topic: ProcDOT: Visual Malware Analysis
Replies: 14
Views: 15127

Re: ProcDOT: Visual Malware Analysis

Thanks, now everything works as expected, great tool :D

I've played around with it a while, and I think i found something to improve:

I tried to load a ~ 3GByte Logfile, but when I try to select a Launcher, my system freezes and I've to reset my machine the hard way, on x86 and x64 :(
Do you load ...
by cxAlex
Mon Mar 18, 2013 12:06 pm
Forum: Applications - Feedback and Discussion
Topic: ProcDOT: Visual Malware Analysis
Replies: 14
Views: 15127

Re: ProcDOT: Visual Malware Analysis

Thanks, the Tread - ID was missing in the procmon configuration :P

But now it only shows a blank white image, i think also have to specifiy a windump - logfile? But how do i get this file?

Greets, Alex
by cxAlex
Mon Mar 18, 2013 11:56 am
Forum: Applications - Feedback and Discussion
Topic: ProcDOT: Visual Malware Analysis
Replies: 14
Views: 15127

Re: ProcDOT: Visual Malware Analysis

Interesting tool.

I'd like to try it but i allways get an error when I click on refresh:
---------------------------
ProcDOT
---------------------------
Error: Couldn't open PNG!
---------------------------
OK
---------------------------

I downloaded and installed the latest version of windump ...
by cxAlex
Thu Mar 14, 2013 12:51 am
Forum: Feature Requests and Wishlists
Topic: SetWindowData(#Window,Value) And GetWindowData(#Window)
Replies: 11
Views: 3473

Re: SetWindowData(#Window,Value) And GetWindowData(#Window)

Or this way, you can include it into your Ssurce and forget it, If it's implemented natively then the native procedures are used.

CompilerIf Not Defined(GetWindowData, #PB_Function)
Global NewMap __WindowData()

Procedure GetWindowData(_Window)
ProcedureReturn __WindowData(Str(_Window ...
by cxAlex
Wed Mar 13, 2013 2:01 am
Forum: Coding Questions
Topic: Bytes conversion
Replies: 9
Views: 2530

Re: Bytes conversion

If you change line 3 from

Code: Select all

Protected unit.b = Round(Log(byte)/Log(1024), 0)
to

Code: Select all

Protected unit.b = Round(Log(byte)/Log(1024), #PB_Round_Nearest)
the 1 GB is shown correct.
by cxAlex
Mon Mar 11, 2013 3:25 pm
Forum: Feature Requests and Wishlists
Topic: Nested macro definitions
Replies: 4
Views: 2121

Re: Nested macro definitions

With this little Trick, you can define a macro inside a macro:

; EnableExplicit

CompilerIf Not Defined(__macrobuilder, #PB_Constant)
#__macrobuilder = #True
Macro _Macro1
M
EndMacro

Macro _Macro2
acro
EndMacro

Macro _Macro
: _Macro1#_Macro2
EndMacro

Macro _EndOfMacro1
EndM ...
by cxAlex
Mon May 23, 2011 11:43 am
Forum: Windows
Topic: Windows sockets close returning memory errors
Replies: 2
Views: 2249

Re: Windows sockets close returning memory errors

Thank you. I implemented this via compiler switch optionally in my ENM - Network System :)

Greets, Alex
by cxAlex
Thu May 12, 2011 10:29 am
Forum: Coding Questions
Topic: CreateThread() then, threadpriority() = "not a thread"
Replies: 8
Views: 1734

Re: CreateThread() then, threadpriority() = "not a thread"

Maybe your Thread is terminated (finished) between IsThread() and ThreadPriority()? I don't know your thread or how long it is, but it could happen.

Greets, Alex
by cxAlex
Thu May 12, 2011 10:24 am
Forum: Coding Questions
Topic: Threading problem...
Replies: 16
Views: 2908

Re: Threading problem...

Here is a big include to use Network and Threads in an easy and safe way: http://www.purebasic.fr/german/viewtopic.php?t=23777
It also can help you to send and receive data in a safe way and implement your own protocols and much more.

Greets, Alex
by cxAlex
Thu May 05, 2011 10:41 am
Forum: Coding Questions
Topic: Tasks and threads
Replies: 4
Views: 1350

Re: Tasks and threads

I think I've coded a Include that can do what you need, a background JobProcessor, with a variable amount of threads, priority management and many other Features. I'm using this Include in many of my projects, it's very stable and fast: Link to german forum and download: http://www.purebasic.fr ...
by cxAlex
Tue Feb 08, 2011 1:31 pm
Forum: Coding Questions
Topic: [4.51] Using @ to get pointer while creating new map element
Replies: 2
Views: 1458

[4.51] Using @ to get pointer while creating new map element

German thread:
http://www.purebasic.fr/german/viewtopic.php?t=23835

If you are using @ to get the pointer to a map-element while creating it, the map element is not created.

NewMap myMap.i()

Debug @myMap("haha")

ForEach myMap()
Debug MapKey(myMap())
Next

Working:

NewMap myMap.i()

myMap ...
by cxAlex
Wed Oct 20, 2010 1:47 pm
Forum: Announcement
Topic: EProxy [OpenSource] Socks4/Socks5 Proxy
Replies: 2
Views: 2402

EProxy [OpenSource] Socks4/Socks5 Proxy

Hello, please excuse my bad English.

EProxy ist a SOCKS4/SOCKS5 Proxy Server inclusive AUTH - Support, developed after RFC 1928 and RFC 1929. EProxy is highly parallelized, cross-platform compatible (Windows/Linux/Mac OS X). The package contains \src\Eproxy.pb the proxy core source, \src\EProxy ...
by cxAlex
Thu Sep 23, 2010 9:40 am
Forum: Applications - Feedback and Discussion
Topic: Purefiler - An alternative profiler
Replies: 103
Views: 58803

Re: Purefiler - An alternative profiler

Hello. Please excuse my bad English.

I'm very interested in your, but there is a Problem with Import/ImportC blocks. After analyzing the PBEditorOutput.pb i found this:

ImportC #Pref$ + "libs\alibcof64.lib"
purefiler_AddStopEntry(3, 20, 1)
purefiler_AddStartEntry(3, 21, 1)
A_memcpy(*dest ...
by cxAlex
Mon Aug 31, 2009 12:27 pm
Forum: Tricks 'n' Tips
Topic: Binary search vs. Hash table
Replies: 19
Views: 12632

Her another HT to benchmark:

Test package: http://www.file-upload.net/download-1858638/ht_test.zip.html
German Forum: http://www.purebasic.fr/german/viewtopic.php?t=18474

In your benchmark the table is 3 times faster than binaryserach at getting values and a little bit faster at adding values ...
by cxAlex
Wed Aug 19, 2009 7:01 pm
Forum: Announcement
Topic: ECluster - Distributed Computing & more
Replies: 12
Views: 8925

Update: Version # 1.0.3.2
Optional statistics log file (SQLite Database)
Cache procedures
SQLite procedures (adapted RockedRiders's Lib)
Proxy support (HTTP/SOCKS4/SOCKS5)
Better error handling
Client - Server and P2P data streaming
Reorganized dll - wrapper (splitted in smaller files ...