Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.219.242.213
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
pam-1.1.8 /
txts /
[ HOME SHELL ]
Name
Size
Permission
Action
README.pam_access
4.84
KB
-rw-r--r--
README.pam_chroot
1.47
KB
-rw-r--r--
README.pam_console
1.88
KB
-rw-r--r--
README.pam_cracklib
9.53
KB
-rw-r--r--
README.pam_debug
1.95
KB
-rw-r--r--
README.pam_deny
1.01
KB
-rw-r--r--
README.pam_echo
1.07
KB
-rw-r--r--
README.pam_env
3.07
KB
-rw-r--r--
README.pam_exec
2.21
KB
-rw-r--r--
README.pam_faildelay
827
B
-rw-r--r--
README.pam_faillock
7.94
KB
-rw-r--r--
README.pam_filter
3.03
KB
-rw-r--r--
README.pam_ftp
1.66
KB
-rw-r--r--
README.pam_group
2.09
KB
-rw-r--r--
README.pam_issue
1.32
KB
-rw-r--r--
README.pam_keyinit
2.19
KB
-rw-r--r--
README.pam_lastlog
2.21
KB
-rw-r--r--
README.pam_limits
2.36
KB
-rw-r--r--
README.pam_listfile
3.54
KB
-rw-r--r--
README.pam_localuser
1.14
KB
-rw-r--r--
README.pam_loginuid
986
B
-rw-r--r--
README.pam_mail
1.96
KB
-rw-r--r--
README.pam_mkhomedir
1.33
KB
-rw-r--r--
README.pam_motd
755
B
-rw-r--r--
README.pam_namespace
10.75
KB
-rw-r--r--
README.pam_nologin
1.32
KB
-rw-r--r--
README.pam_permit
907
B
-rw-r--r--
README.pam_postgresok
346
B
-rw-r--r--
README.pam_pwhistory
1.89
KB
-rw-r--r--
README.pam_rhosts
1.84
KB
-rw-r--r--
README.pam_rootok
1.06
KB
-rw-r--r--
README.pam_securetty
1.31
KB
-rw-r--r--
README.pam_selinux
2.84
KB
-rw-r--r--
README.pam_sepermit
1.61
KB
-rw-r--r--
README.pam_shells
652
B
-rw-r--r--
README.pam_stress
2.01
KB
-rw-r--r--
README.pam_succeed_if
2.8
KB
-rw-r--r--
README.pam_tally
4.67
KB
-rw-r--r--
README.pam_tally2
5.52
KB
-rw-r--r--
README.pam_time
1.27
KB
-rw-r--r--
README.pam_timestamp
1.48
KB
-rw-r--r--
README.pam_tty_audit
2.71
KB
-rw-r--r--
README.pam_umask
1.59
KB
-rw-r--r--
README.pam_unix
6.91
KB
-rw-r--r--
README.pam_userdb
2.81
KB
-rw-r--r--
README.pam_warn
1.2
KB
-rw-r--r--
README.pam_wheel
1.92
KB
-rw-r--r--
README.pam_xauth
3.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.pam_filter
pam_filter — PAM filter module ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ DESCRIPTION This module is intended to be a platform for providing access to all of the input/output that passes between the user and the application. It is only suitable for tty-based and (stdin/stdout) applications. To function this module requires filters to be installed on the system. The single filter provided with the module simply transposes upper and lower case letters in the input and output streams. (This can be very annoying and is not kind to termcap based editors). Each component of the module has the potential to invoke the desired filter. The filter is always execv(2) with the privilege of the calling application and not that of the user. For this reason it cannot usually be killed by the user without closing their session. OPTIONS debug Print debug information. new_term The default action of the filter is to set the PAM_TTY item to indicate the terminal that the user is using to connect to the application. This argument indicates that the filter should set PAM_TTY to the filtered pseudo-terminal. non_term don't try to set the PAM_TTY item. runX In order that the module can invoke a filter it should know when to invoke it. This argument is required to tell the filter when to do this. Permitted values for X are 1 and 2. These indicate the precise time that the filter is to be run. To understand this concept it will be useful to have read the pam(3) manual page. Basically, for each management group there are up to two ways of calling the module's functions. In the case of the authentication and session components there are actually two separate functions. For the case of authentication, these functions are pam_authenticate(3) and pam_setcred(3), here run1 means run the filter from the pam_authenticate function and run2 means run the filter from pam_setcred. In the case of the session modules, run1 implies that the filter is invoked at the pam_open_session(3) stage, and run2 for pam_close_session(3). For the case of the account component. Either run1 or run2 may be used. For the case of the password component, run1 is used to indicate that the filter is run on the first occasion of pam_chauthtok(3) (the PAM_PRELIM_CHECK phase) and run2 is used to indicate that the filter is run on the second occasion (the PAM_UPDATE_AUTHTOK phase). filter The full pathname of the filter to be run and any command line arguments that the filter might expect. EXAMPLES Add the following line to /etc/pam.d/login to see how to configure login to transpose upper and lower case letters once the user has logged in: session required pam_filter.so run1 /lib/security/pam_filter/upperLOWER AUTHOR pam_filter was written by Andrew G. Morgan <morgan@kernel.org>.
Close