Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.129.211.190
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/self/root/usr/share/augeas/lenses/dist/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/self/root/usr/share/augeas/lenses/dist/authselectpam.aug
(*
Module: AuthselectPam
  Parses /etc/authselect/custom/*/*-auth and
  /etc/authselect/custom/*/postlogin files

Author: Heston Snodgrass <heston.snodgrass@puppet.com> based on pam.aug by David Lutterkort <lutter@redhat.com>

About: Reference
  This lens tries to keep as close as possible to `man pam.conf` where
  possible. This lens supports authselect templating syntax as
  can be found in `man authselect-profiles`.

About: Licence
  This file is licensed under the LGPL v2+, like the rest of Augeas.

About: Lens Usage

About: Configuration files
  This lens also autoloads /etc/authselect/custom/*/*-auth and
  /etc/authselect/custom/*/postlogin because these files are PAM template
  files on machines that have authselect custom profiles.
*)
module AuthselectPam =
  autoload xfm

  (* The Pam space does not work for certain parts of the authselect syntax so we need our own whitespace *)
  let reg_ws = del /([ \t])/ " "

  (* This is close the the same as argument from pam.aug, but curly braces are accounted for *)
  let argument = /(\[[^]{}#\n]+\]|[^[{#\n \t\\][^#\n \t\\]*)/

  (* The various types of conditional statements that can exist in authselect PAM files *)
  let authselect_conditional_type = /(continue if|stop if|include if|exclude if|imply|if)/

  (* Basic logical operators supported by authselect templates *)
  let authselect_logic_stmt = [ reg_ws . key /(and|or|not)/ ]

  (* authselect features inside conditional templates *)
  let authselect_feature = [ label "feature" . Quote.do_dquote (store /([a-z0-9-]+)/) ]

  (* authselect templates can substitute text if a condition is met. *)
  (* The sytax for this is `<conditional>:<what to sub on true>|<what to sub on false>` *)
  (* Both result forms are optional *)
  let authselect_on_true = [ label "on_true" . Util.del_str ":" . store /([^#{}:|\n\\]+)/ ]
  let authselect_on_false = [ label "on_false" . Util.del_str "|" . store /([^#{}:|\n\\]+)/ ]

  (* Features in conditionals can be grouped together so that logical operations can be resolved for the entire group *)
  let authselect_feature_group = [ label "feature_group" . Util.del_str "(" .
                                   authselect_feature . authselect_logic_stmt .
                                   reg_ws . authselect_feature . (authselect_logic_stmt . reg_ws . authselect_feature)* .
                                   Util.del_str ")" ]

  (* Represents a single, full authselect conditional template *)
  let authselect_conditional = [ Pam.space .
                                 Util.del_str "{" .
                                 label "authselect_conditional" . store authselect_conditional_type .
                                 authselect_logic_stmt* .
                                 ( reg_ws . authselect_feature | reg_ws . authselect_feature_group) .
                                 authselect_on_true? .
                                 authselect_on_false? .
                                 Util.del_str "}" ]

  (* Shared with PamConf *)
  let record = [ label "optional" . del "-" "-" ]? .
               [ label "type" . store Pam.types ] .
               Pam.space .
               [ label "control" . store Pam.control] .
               Pam.space .
               [ label "module" . store Pam.word ] .
               (authselect_conditional | [ Pam.space . label "argument" . store argument ])* .
               Pam.comment_or_eol

  let record_svc = [ seq "record" . Pam.indent . record ]

  let lns = ( Pam.empty | Pam.comment | Pam.include | record_svc ) *

  let filter = incl "/etc/authselect/custom/*/*-auth"
             . incl "/etc/authselect/custom/*/postlogin"
             . Util.stdexcl

  let xfm = transform lns filter

(* Local Variables: *)
(* mode: caml       *)
(* End:             *)

Anon7 - 2022
AnonSec Team