__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

[email protected]: ~ $
============================================================
=                     TIPS FOR APG                         =
============================================================
= This file contains some tips for APG.                    =
=                                                          =
= 1. If You wish to submit a tip please send an email to   =
=    <[email protected]> and if i find it useful i'll put    =
=    Your tip in the APG_TIPS file of the next release.    =
=    I will also put Your tip on the APG website as soon   =
=    as it posible.                                        =
= 2. If you wish to remove or update Your tip please send  =
=    en email to <[email protected]>. I will remove/update   =
=    Your tip in the APG_TIPS file of the next release.    =
=    I'll remove/update Your tip on the APG website as     =
=    soon as it posible.                                   =
=                                                          =
= Adel I Mirzazhanov                                       =
= [email protected]                                          =
============================================================

######################################################
# 1. Elimination of certain characters from the output
#    by Barton Hodges <[email protected]>
######################################################
I don't like to use "o"'s or "l"'s in my passwords
because they looke like zeros and ones instead of O's
and L's.

I hacked together a little shell script to accomplish
the elimination of certain characters from the output.
 
----------[cut here]
#!/bin/sh
 
genpw () {
   PW=$(/usr/local/bin/apg -L -m 10 -x 10 -n 1 | egrep -v [owl])
   if [ "$PW" != "" ]; then
      echo $PW
      return 0;
   else
      return 1;
   fi
}
 
until genpw; do : ; done
----------[cut here]

Note:
 Since apg-2.1.0b0 you can use [-e char_string] option
 to do the same thing.

#######################################################
# 2. APG and xinetd
# by Tomaz Zupan <[email protected]>
#######################################################

I use xinetd instead of inetd as per your documentation,
so I hope you (or anyone using apgd) might find usefull
this xinetd.conf entry. Arguments are tailored according
to my needs, but that shouldn't be a problem for anyone
that read man pages ... 

--------> [cut here]
# default: on
# description: APGD is a deamon that returns randomly generated password
service pwdgen
{
    port = 129
    socket_type = stream
    wait = no
    only_from = localhost
    user = pismonosa
    server = /usr/local/sbin/apgd
    server_args = -M ln -n 1 -m 6 -x 8 -a 1
    instances = 1
    log_on_failure += USERID
    disable = no
}
--------> [cut here]

######################################################
# 3. APG and PHP script
# from http://www.forth.com/rick/
######################################################

After building and installing APG, you must make it
easily available. The simplest is as a web-page
reference. The simplest way to do this is by a php
script located in the root of the web server's data
tree: 
     
--------> [cut here]
<html>
  <body>
    <pre>
      <?
        $foo = `/usr/local/bin/apg -n 20`;
        echo $foo
      ?>
    </pre>
  </body>
</html>
--------> [cut here]

######################################################
# 4. APG v2.1.0b0 and [R,r] letters in mode string
# by Adel I. Mirzazhanov <[email protected]>
######################################################
Since version 2.1.0b0 You can not use symbols R,r to ask
APG not to generate symbols (' ` | \ ? $ ") when You
plan to use special symbol set for password generation.

But You stil can get the same resault with new option
[-e char_string] (see apg(1)). Just run APG like this:

 apg -a1 -M s -e \'\`\|\?\$\"\\
 
This method will work for random password generation
only.

Filemanager

Name Type Size Permission Actions
APG_TIPS File 3.79 KB 0644
README File 604 B 0644
README.Debian File 122 B 0644
THANKS File 1.11 KB 0644
TODO File 365 B 0644
changelog.Debian.gz File 979 B 0644
copyright File 1.83 KB 0644
php.tar.gz File 6 KB 0644
Filemanager