calls
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2771
Globe7 1.1
Globe7 is a soft phone with integrated voice, video, IM, and real-time video streaming, powered by online advertising. more>>
Globe7 is a soft phone with integrated voice, video, IM, and real-time video streaming, powered by online advertising. The project allows you to make free calls from PC to PC (voice and video), PC to mobile, and PC to landline by watching videos in Globe7 TV.
Main features:
Phone
- Globe7 converts your laptop or desktop computer into a second telephone. You can make calls to any phone across the Globe. You can also receive unlimited free incoming calls from any landline or mobile phone. With Globe7, PC to PC calling is absolutely FREE
Globe7 TV
- Globe7 presents you incessant entertainment with free video streaming. You can watch video clips in different categories and you can also earn FREE talk time to your Globe7 account. Video on Demand and matured pay per view content are coming soon
Phone Book
- You can add your non Globe7 members to your phone book and make calls directly from the phone book
Search
- You can search the Web while making calls or chatting with your friends
My Earnings
- Check the details of amount earned by watching Globe7 TV
My channel
- You can upload your video files and share it among the friends up to a capacity of 1GB
Instant Messaging (Chat)
- You can send messages to your Globe7 friends who are online by using the Chat option
Follow Me Service
- With Follow Me Service facility, you can get your calls redirected to your landline or mobile when you are offline
SMS
- You can send SMS to any mobile across the Globe using the SMS feature available in Globe7
My calls
- You can view the list of incoming calls, outcalls and missed calls
View Channel
- For viewing the video content of your buddies you can choose this option
<<lessMain features:
Phone
- Globe7 converts your laptop or desktop computer into a second telephone. You can make calls to any phone across the Globe. You can also receive unlimited free incoming calls from any landline or mobile phone. With Globe7, PC to PC calling is absolutely FREE
Globe7 TV
- Globe7 presents you incessant entertainment with free video streaming. You can watch video clips in different categories and you can also earn FREE talk time to your Globe7 account. Video on Demand and matured pay per view content are coming soon
Phone Book
- You can add your non Globe7 members to your phone book and make calls directly from the phone book
Search
- You can search the Web while making calls or chatting with your friends
My Earnings
- Check the details of amount earned by watching Globe7 TV
My channel
- You can upload your video files and share it among the friends up to a capacity of 1GB
Instant Messaging (Chat)
- You can send messages to your Globe7 friends who are online by using the Chat option
Follow Me Service
- With Follow Me Service facility, you can get your calls redirected to your landline or mobile when you are offline
SMS
- You can send SMS to any mobile across the Globe using the SMS feature available in Globe7
My calls
- You can view the list of incoming calls, outcalls and missed calls
View Channel
- For viewing the video content of your buddies you can choose this option
Download (MB)
Added: 2007-04-20 License: Other/Proprietary License Price:
4256 downloads
The Examiner 0.5
The Examiner is a forensic tool to disassemble binary executables. more>>
The Examiner is an application that utilizes the objdump command to disassemble and comment foreign executable binaries. This app was designed to analyze static compiled binaries but works ok with others. The intention is for forensic research but could also be used in general reverse engineering.
This program can only handle basic dissassembly. If the binary has been modified to resist debugging then the Examinier probably will not be able to analyze the code. Also the Examiner will not analyze live running code. This can be a good thing but if you need to look at code when it runs or deal with complicated disassembly you should probably use Fenris.
Main features:
- Automates objdump usage
- Can generate cross-reference files of functions, interrupts and other useful things
- Locates functions within the binary
- Understands the stack and comments on its state
- Can parse and understand the contents of the .rodata section
- Cross references .rodata calls and comments on them
- Locates .data pointer references to .rodata
- Provides an easy to read CALL syntax for comments
- Understands and looks up interrupts calls
- Utilizes Linux source headers to determine function names based on what interrupt is called
- Can differentiate all of the socketcall functions
- Can comment on some C like constants for function calls
- Separates functions based on ret calls
- Can recognize and attempts to decode UPX compressed binaries
- Works with TCT and Fenris dress utility
- Can detect crippled ELF executables and burneye executables
- Recognizes symbols and will cross-reference dynamic libraries
Enhancements:
- Has rudementary detection of burneye via 7350 sig.
- Can detect crippled ELF header files (optionally uncripple)
- Added a TUTORIAL file
- Modified default working dir to $HOMEexaminer-data
- Can cross-reference .data pointers to .rodata sections
- Now records pushl calls
- Fixed -H to dump headers instead of -R
- Added -o to specify an output file or STDOUT with -
- Added -c to specify a comment character
- Added a new util xhierarchy to print function call hierarchy
<<lessThis program can only handle basic dissassembly. If the binary has been modified to resist debugging then the Examinier probably will not be able to analyze the code. Also the Examiner will not analyze live running code. This can be a good thing but if you need to look at code when it runs or deal with complicated disassembly you should probably use Fenris.
Main features:
- Automates objdump usage
- Can generate cross-reference files of functions, interrupts and other useful things
- Locates functions within the binary
- Understands the stack and comments on its state
- Can parse and understand the contents of the .rodata section
- Cross references .rodata calls and comments on them
- Locates .data pointer references to .rodata
- Provides an easy to read CALL syntax for comments
- Understands and looks up interrupts calls
- Utilizes Linux source headers to determine function names based on what interrupt is called
- Can differentiate all of the socketcall functions
- Can comment on some C like constants for function calls
- Separates functions based on ret calls
- Can recognize and attempts to decode UPX compressed binaries
- Works with TCT and Fenris dress utility
- Can detect crippled ELF executables and burneye executables
- Recognizes symbols and will cross-reference dynamic libraries
Enhancements:
- Has rudementary detection of burneye via 7350 sig.
- Can detect crippled ELF header files (optionally uncripple)
- Added a TUTORIAL file
- Modified default working dir to $HOMEexaminer-data
- Can cross-reference .data pointers to .rodata sections
- Now records pushl calls
- Fixed -H to dump headers instead of -R
- Added -o to specify an output file or STDOUT with -
- Added -c to specify a comment character
- Added a new util xhierarchy to print function call hierarchy
Download (0.033MB)
Added: 2005-03-07 License: GPL (GNU General Public License) Price:
1696 downloads
calltree 2.3
calltree is a static call tree generator for C programs. more>>
The calltree command parses a collection of input files (assuming C syntax) and builds a graph that represents the static call structure of these files.
Calltree is similar to cflow(1) but unlike cflow(1), calltree is not based on lint(1).Calltree implements some more functions than cflow(1), but does not list the return types of the functions. This is because calltree includes an own C parser and thus may be used even on systems that dont have lint(1).
The disadvantage is that the C parser that is used by calltree is not completely correct and may not find all calls of a function. This is mainly true for calls that are done via function pointers.
Calltree is able to detect recursive function calls (e.g. functions that call themselves). Recursive function calls are marked with an ellipsis in the output.
<<lessCalltree is similar to cflow(1) but unlike cflow(1), calltree is not based on lint(1).Calltree implements some more functions than cflow(1), but does not list the return types of the functions. This is because calltree includes an own C parser and thus may be used even on systems that dont have lint(1).
The disadvantage is that the C parser that is used by calltree is not completely correct and may not find all calls of a function. This is mainly true for calls that are done via function pointers.
Calltree is able to detect recursive function calls (e.g. functions that call themselves). Recursive function calls are marked with an ellipsis in the output.
Download (0.24MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1669 downloads
ltrace 0.3.36
ltrace it tracks runtime library calls in dynamically-linked programs. more>>
ltrace is a debugging program which runs a specified command until it exits. While the command is executing, ltrace intercepts and records the dynamic library calls which are called by the executed process and the signals received by that process.
It can also intercept and print the system calls executed by the program.
The program to be traced need not be recompiled for this, so you can use it on binaries for which you dont have the source handy.
You should install ltrace if you need a sysadmin tool for tracking the execution of processes.
Enhancements:
- Changed distribution to pristine source
- New Standards-Version (3.6.1)
- Fixed "--indent" option (closes: Bug#265185)
<<lessIt can also intercept and print the system calls executed by the program.
The program to be traced need not be recompiled for this, so you can use it on binaries for which you dont have the source handy.
You should install ltrace if you need a sysadmin tool for tracking the execution of processes.
Enhancements:
- Changed distribution to pristine source
- New Standards-Version (3.6.1)
- Fixed "--indent" option (closes: Bug#265185)
Download (0.12MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1664 downloads
LibFakeTime 20040921
LibFakeTime is a shared library that provides flters for the time() call. more>>
LibFakeTime is a shared library which provides flters for the time() and gettimeofday() library calls for dynamicaly linked programs. LibFakeTime works transparently for programs (no need to recompile or relink).
It has system-wide and user-wide configuration files (e.g. ~/.libfaketime.d/ for user-wide and /etc/libfaketime.d/ for system-wide configuration).
<<lessIt has system-wide and user-wide configuration files (e.g. ~/.libfaketime.d/ for user-wide and /etc/libfaketime.d/ for system-wide configuration).
Download (0.014MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1657 downloads
sysconf 1.0.0
This utility makes the sysconf, pathconf, and strconf POSIX system calls available on the command-line. more>>
This utility makes the "sysconf", "pathconf", and "strconf" POSIX system calls available on the command-line.
Report sysconf, pathconf, and confstr system variables. Variable names from the sysconf(3) call start with ``_SC. Variable names from the pathconf(3) call start with ``_PC. Variable names from the confstr(3) call start with ``_CS. To see a full list of available variable names, use the --all option.
-l, --all
Output a full list of all the known system variables. For pathconf(3) variables, you will need to include the --path option.
-p FILENAME, --path=FILENAME
When reporting pathconf(3) variables, use FILENAME as the path reference during the system call.
-v, --verbose
Output the variable name along with the value.
-h, --help
Display this help and exit.
-V, --version
Output version information exit.
<<lessReport sysconf, pathconf, and confstr system variables. Variable names from the sysconf(3) call start with ``_SC. Variable names from the pathconf(3) call start with ``_PC. Variable names from the confstr(3) call start with ``_CS. To see a full list of available variable names, use the --all option.
-l, --all
Output a full list of all the known system variables. For pathconf(3) variables, you will need to include the --path option.
-p FILENAME, --path=FILENAME
When reporting pathconf(3) variables, use FILENAME as the path reference during the system call.
-v, --verbose
Output the variable name along with the value.
-h, --help
Display this help and exit.
-V, --version
Output version information exit.
Download (0.29MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1657 downloads
GetTextLog 0.6
GetTextLog is a tool to intercept calls to gettext and log untranslated messages. more>>
GetTextLog is a simple preloadable library to intercept calls to gettext and store all untranslated messages in a log.
It is designed to help translators of big projects since this tool allows them to separate more frequent and less frequent messages.
Installation
make all install
Usage
To run program with gettextlog, call it like that:
run-with-gettextlog program with arguments
See messages in "$HOME/gettextlog/*.po" files.
Version restrictions:
- Raw unicode in Gnome 1.x programs.
<<lessIt is designed to help translators of big projects since this tool allows them to separate more frequent and less frequent messages.
Installation
make all install
Usage
To run program with gettextlog, call it like that:
run-with-gettextlog program with arguments
See messages in "$HOME/gettextlog/*.po" files.
Version restrictions:
- Raw unicode in Gnome 1.x programs.
Download (0.019MB)
Added: 2005-04-18 License: LGPL (GNU Lesser General Public License) Price:
1649 downloads
HTTP Proxy Client 0.8.5
HTTP Proxy Client is a set of libraries and scripts that provide transparent access to Internet. more>>
HTTP Proxy Client is the small set of libraries and scripts, which provides transparent access to Internet via HTTP proxy for programs, which uses TCP/IP for communication.
The list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
<<lessThe list of programs includes: telnet, ftp, licq, cvs, smth else? Project implements dynamic library, that can be preloaded before program run.
The library substitutes some system calls (connect(), gethostbyaddr(), gethostbyname()), with calls, which makes TCP/IP connection through HTTP proxy. This allows client programs behind HTTP proxy work with Internet without limitations.
At the moment tested on i386 Linux, i386/sparc Solaris.
Enhancements:
- While using dotted address, applications will attempt to connect regardless DNS lookup result.
Download (0.21MB)
Added: 2005-09-13 License: GPL (GNU General Public License) Price:
1510 downloads
Kisdnmonitor 0.5.3.1
Kisdnmonitor is a KDE applet for isdnserver. more>>
Kisdnmonitor is an applet for your KDE-desktop environment, it shows the status of the B-Channels and logs the calls (incoming and outgoing) with the duration and the costs and some other information.
It uses the standard KDE-addressbook to avoid annoying duplicities, and it retrieves on the fly the relevant information, it even shows the email addresses defined for the addressbook entry that called.
You can print your log lists as viewed on the screen, you can change the row order and the sorting order, this will be reflected in the final printout.
Main features:
- It monitors the B-Channels of your ISDN-Cards (version > 0.3b multi-monitoring)
- show each incoming call in a popup window
- show each outgoing call in a popup window
- show the calls while the user absent and logged out (the pc has still to be powered on)
- show the duration of a call
- show the costs of the outgoing calls
- show a list of all calls with editing and find options
- printing the list in the row order and sorting order youve setup
- totals are calculated (time, duration, costs)
- linked to kaddressbook (edit, insert)
- mail addresse(s) of the caller in the contextmenu (if available)
- configuring of the main window (toolbars)
Enhancements:
- now compiles with GCC 3.3.3-2
<<lessIt uses the standard KDE-addressbook to avoid annoying duplicities, and it retrieves on the fly the relevant information, it even shows the email addresses defined for the addressbook entry that called.
You can print your log lists as viewed on the screen, you can change the row order and the sorting order, this will be reflected in the final printout.
Main features:
- It monitors the B-Channels of your ISDN-Cards (version > 0.3b multi-monitoring)
- show each incoming call in a popup window
- show each outgoing call in a popup window
- show the calls while the user absent and logged out (the pc has still to be powered on)
- show the duration of a call
- show the costs of the outgoing calls
- show a list of all calls with editing and find options
- printing the list in the row order and sorting order youve setup
- totals are calculated (time, duration, costs)
- linked to kaddressbook (edit, insert)
- mail addresse(s) of the caller in the contextmenu (if available)
- configuring of the main window (toolbars)
Enhancements:
- now compiles with GCC 3.3.3-2
Download (1.04MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1474 downloads
ivcall 0.4
ivcall is a small utility which may be used to make automated telephone calls with your isdn4linux supported ISDN card. more>>
ivcall is a small utility which may be used to make automated telephone calls with your isdn4linux supported ISDN card. Outgoing calls are supported as well as incoming calls.
The audio data recieved from the peer is written to STDOUT, audio data read from STDIN is send to the peer. The audio data is in raw 8 bit uLaw 8 KHz format, without any headers.
Installation:
./configure
make
make install
Enhancements:
- cleanups
- add softfax support using spandsp.
<<lessThe audio data recieved from the peer is written to STDOUT, audio data read from STDIN is send to the peer. The audio data is in raw 8 bit uLaw 8 KHz format, without any headers.
Installation:
./configure
make
make install
Enhancements:
- cleanups
- add softfax support using spandsp.
Download (0.11MB)
Added: 2005-10-14 License: GPL (GNU General Public License) Price:
1470 downloads
Oxylus Service Management 0.2
Service Management is a Web application that allows users to manage service. more>>
Service Management is a Web application that allows users to manage service and repair, including work orders, service scheduling, service calls, preventative maintenance, and customer contact information.
Enhancements:
- Some bugfixes were made for PHP5.
- A new interface was implemented.
<<lessEnhancements:
- Some bugfixes were made for PHP5.
- A new interface was implemented.
Download (0.20MB)
Added: 2005-10-31 License: GPL (GNU General Public License) Price:
1456 downloads
GNU Gatekeeper GUI 0.11
The GNU Gatekeeper GUI visualizes all registrations and VoIP calls the gatekeeper is managing. more>>
The GNU Gatekeeper GUI visualizes all registrations and VoIP calls the gatekeeper is managing.
GNU Gatekeeper GUI also allows the user to send commands to the gatekeeper (e.g., to terminate calls or unregister H.323 endpoints).
According to Recommendation H.323, a gatekeeper shall provide the following services:
- Address Translation
- Admissions Control
- Bandwidth Control
- Zone Management
- Call Control Signaling
- Call Authorization
- Bandwidth Management
- Call Management
The GNU Gatekeeper implements most of these functions based on the OpenH323 protocol stack.
Recommendation H.323 is an international standard published by the ITU. It is a communications standard for audio, video, and data over the Internet. See also Paul Jones A Primer on the H.323 Series Standard.
Enhancements:
- A bug has been fixed that prevented usage with a non-password-protected status port.
- Small visual changes were also made.
<<lessGNU Gatekeeper GUI also allows the user to send commands to the gatekeeper (e.g., to terminate calls or unregister H.323 endpoints).
According to Recommendation H.323, a gatekeeper shall provide the following services:
- Address Translation
- Admissions Control
- Bandwidth Control
- Zone Management
- Call Control Signaling
- Call Authorization
- Bandwidth Management
- Call Management
The GNU Gatekeeper implements most of these functions based on the OpenH323 protocol stack.
Recommendation H.323 is an international standard published by the ITU. It is a communications standard for audio, video, and data over the Internet. See also Paul Jones A Primer on the H.323 Series Standard.
Enhancements:
- A bug has been fixed that prevented usage with a non-password-protected status port.
- Small visual changes were also made.
Download (0.025MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1422 downloads
Libsdf 0.1
Libsdf is a shared library which, when preloaded, will intercept calls to a GNU libc functions open() and open64(). more>>
Libsdf library is a shared library which, when preloaded, will intercept calls to a GNU libc functions open() and open64(), and if the first argoment of these functions is a remote file (http:// or ftp://), it will copy this file in a local path (< user >/.sdf) and it will runs the functions top of it.
With the /.sdfrc file, you can use the libsdf with a proxy.
The syntax for .sdfrc file, is:
---/home/bakunin/.sdfrc ---
# Important: proxy string MUST is PROTOCOL://...
proxy = "http://localhost"
# Port is optional. Default = 8080.
port = 8080
# Socks5 is optional. Default is false (http proxy).
socks5 = false
<<lessWith the /.sdfrc file, you can use the libsdf with a proxy.
The syntax for .sdfrc file, is:
---/home/bakunin/.sdfrc ---
# Important: proxy string MUST is PROTOCOL://...
proxy = "http://localhost"
# Port is optional. Default = 8080.
port = 8080
# Socks5 is optional. Default is false (http proxy).
socks5 = false
Download (0.010MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1407 downloads
Python Remote Call Module 0.0.3
Python Remote Call Module allows to transparently work with remote object in a python program. more>>
Python Remote Call Module allows to transparently work with remote object in a python program.
To make this possible a kind of peer-to-peer design is used. Servers can be created explictly, as can clients by explicitly connecting to a server. If a client needs to have a server, e.g. so a reference to a local object can be passed to a remote destination, it is instantiated as needed.
Clients can have multiple connections. New connections are created when needed, e.g. when a remote reference to a new server is recieved.
WARNING:
This module is still in its experimental phase, so it is kind of usable, but an awful lot of bugs is still in it, and quite a few parts are not coded yet, others arent even designed yet.
Therefor lots of changes and outdated documentation should be expected.
Enhancements:
- All previous stub objects have been replaced by a single stub object which uses on-demand retrieval of attributes of remote objects.
- This way, the behavior of the stub object is much more flexible and smoother.
- A first draft of an authentication framework has been implemented so PyRCall can support many different authentication methods.
- Support for username/password-based authentication has been implemented.
<<lessTo make this possible a kind of peer-to-peer design is used. Servers can be created explictly, as can clients by explicitly connecting to a server. If a client needs to have a server, e.g. so a reference to a local object can be passed to a remote destination, it is instantiated as needed.
Clients can have multiple connections. New connections are created when needed, e.g. when a remote reference to a new server is recieved.
WARNING:
This module is still in its experimental phase, so it is kind of usable, but an awful lot of bugs is still in it, and quite a few parts are not coded yet, others arent even designed yet.
Therefor lots of changes and outdated documentation should be expected.
Enhancements:
- All previous stub objects have been replaced by a single stub object which uses on-demand retrieval of attributes of remote objects.
- This way, the behavior of the stub object is much more flexible and smoother.
- A first draft of an authentication framework has been implemented so PyRCall can support many different authentication methods.
- Support for username/password-based authentication has been implemented.
Download (0.005MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1399 downloads
bio2jack 0.8
bio2jack is a library that allows for simple porting of general purposed bio (blocked io) OSS/ALSA audio applications to Jack. more>>
bio2jack is a library that allows for simple porting of general purposed bio (blocked io) OSS/ALSA audio applications to Jack.
This library allows the person porting the code to simply replace the calls into OSS/ALSA with calls into interface functions of this library.
The library buffers a small amount of audio data and takes care of the rest of the jack implementation including the linked list of audio data buffers and the jack callback.
<<lessThis library allows the person porting the code to simply replace the calls into OSS/ALSA with calls into interface functions of this library.
The library buffers a small amount of audio data and takes care of the rest of the jack implementation including the linked list of audio data buffers and the jack callback.
Download (0.52MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1358 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above calls search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed