shell bypass 403

UnknownSec Shell

: /lib64/python2.7/ [ drwxr-xr-x ]

name : posixfile.pyo
�
zfc@sfdZddlZejded�ddd��YZddd�Zd	�Zd
ZdZdZ	dS(
s:Extended file operations available in POSIX.

f = posixfile.open(filename, [mode, [bufsize]])
      will create a new posixfile object

f = posixfile.fileopen(fileobject)
      will create a posixfile object from a builtin file object

f.file()
      will return the original builtin file object

f.dup()
      will return a new file object based on a new filedescriptor

f.dup2(fd)
      will return a new file object based on the given filedescriptor

f.flags(mode)
      will turn on the associated flag (merge)
      mode can contain the following characters:

  (character representing a flag)
      a       append only flag
      c       close on exec flag
      n       no delay flag
      s       synchronization flag
  (modifiers)
      !       turn flags 'off' instead of default 'on'
      =       copy flags 'as is' instead of default 'merge'
      ?       return a string in which the characters represent the flags
              that are set

      note: - the '!' and '=' modifiers are mutually exclusive.
            - the '?' modifier will return the status of the flags after they
              have been changed by other characters in the mode string

f.lock(mode [, len [, start [, whence]]])
      will (un)lock a region
      mode can contain the following characters:

  (character representing type of lock)
      u       unlock
      r       read lock
      w       write lock
  (modifiers)
      |       wait until the lock can be granted
      ?       return the first lock conflicting with the requested lock
              or 'None' if there is no conflict. The lock returned is in the
              format (mode, len, start, whence, pid) where mode is a
              character representing the type of lock ('r' or 'w')

      note: - the '?' modifier prevents a region from being locked; it is
              query only
i����NsIThe posixfile module is deprecated; fcntl.lockf() provides better lockingit_posixfile_cBsheZdZddgZd�Zddd�Zd�Zd�Zd	�Zd
�Z	d�Z
d�ZRS(
s;File wrapper class that provides extra POSIX file routines.topentclosedcCs=|j}d|j|j|j|jtt|��dfS(Ns$<%s posixfile '%s', mode '%s' at %s>i(t_file_tstatesRtnametmodethextid(tselftfile((s!/usr/lib64/python2.7/posixfile.pyt__repr__Cs	tri����cCs(ddl}|j|j|||��S(Ni����(t__builtin__tfileopenR(R	RRtbufsizeR
((s!/usr/lib64/python2.7/posixfile.pyRLscCs�ddl}tt|��dkr0td�n||_xZt|�D]L}|jd�sFt||�}t||j	�r�t
|||�q�qFqFW|S(Ni����s
<type 'file'>s,posixfile.fileopen() arg must be file objectt_(ttypestreprttypet	TypeErrorRtdirt
startswithtgetattrt
isinstancetBuiltinMethodTypetsetattr(R	R
Rtmaybemethodtattr((s!/usr/lib64/python2.7/posixfile.pyRPs	cCs|jS(N(R(R	((s!/usr/lib64/python2.7/posixfile.pyR
`scCsOddl}t|d�s'td�n|j|j|jj��|jj�S(Ni����tfdopensdup() method unavailable(tposixthasattrtAttributeErrorRtdupRtfilenoR(R	R((s!/usr/lib64/python2.7/posixfile.pyR!cscCsVddl}t|d�s'td�n|j|jj�|�|j||jj�S(Ni����Rsdup() method unavailable(RRR tdup2RR"RR(R	tfdR((s!/usr/lib64/python2.7/posixfile.pyR#ks
cGsddl}ddl}|rIt|�dkr<td�n|d}nd}d}d|krq||jB}nd|kr�||jB}nd|kr�||jB}n|j}d	|kr|j|j�|j	d�}d
|kr�||@}q||B}n|j|j�|j
|�}d|krZd
|k}|j|j�|j|�}nd|krd}|j|j�|j	d�}|j|@r�|d}n|j|j�|jd�d@r�|d}n|j|@r�|d}n|j|@r|d}n|SdS(
Ni����isToo many argumentsit?tntatst=t!tct(
tfcntltostlenRtO_NDELAYtO_APPENDtO_SYNCRR"tF_GETFLtF_SETFLtF_SETFDtF_GETFD(R	twhichR-R.tl_flagsR
tcur_fltarg((s!/usr/lib64/python2.7/posixfile.pytflagstsF
	
!

"




c
Gsddl}ddl}d|kr0|j}n9d|krH|j}n!d|kr`|j}n	td�d|kr�|j}n!d|kr�|j}n	|j}d}d}d}	t	|�d	kr�|d}	nct	|�d
kr�|\}	}nBt	|�dkr|\}	}}nt	|�dkr6td�nddl
}
ddl}|
jdkr�|j
d||	|j�||�}nW|
jd kr�|j
d||||	ddd�}n!|j
d||||	dd�}|j|jj�||�}d|kr|
jd!kr8|jd|�\}}	}
}}n�|
jd"krq|jd|�\}}}}	}}
}nZ|
jdkr�|jd|�\}}}}	}
}n$|jd|�\}}}}	}}
||jkr||jkr�d|	|||
fSd|	|||
fSqndS(#Ni����twRtusno type of lock specifiedt|R%iiiistoo many argumentstnetbsd1topenbsd2tfreebsd2tfreebsd3tfreebsd4tfreebsd5tfreebsd6tfreebsd7tfreebsd8tbsdos2tbsdos3tbsdos4t
lxxxxlxxxxlhhtaix3taix4thhllliithhllhhtlinux2(R?R@RARBRCRDRERFRGRHRIRJ(RLRM(	R?R@RARBRCRDRHRIRJ(RLRM(tstructR-tF_WRLCKtF_RDLCKtF_UNLCKRtF_SETLKWtF_GETLKtF_SETLKR/tsysR.tplatformtpacktgetpidRR"tunpack(R	thowtargsRQR-tl_typetcmdtl_whencetl_starttl_lenRXR.tflocktl_pidtl_sysidtl_vfs((s!/usr/lib64/python2.7/posixfile.pytlock�sj		
					$*'$(t__name__t
__module__t__doc__RRRRR
R!R#R;Rh(((s!/usr/lib64/python2.7/posixfile.pyR;s								%RcCst�j|||�S(s4Public routine to open a file as a posixfile object.(RR(RRR((s!/usr/lib64/python2.7/posixfile.pyR�scCst�j|�S(sCPublic routine to get a posixfile object from a Python file object.(RR(R
((s!/usr/lib64/python2.7/posixfile.pyR�sii((
RktwarningstwarntDeprecationWarningRRRtSEEK_SETtSEEK_CURtSEEK_END(((s!/usr/lib64/python2.7/posixfile.pyt<module>6s	
�	

© 2025 UnknownSec
Display on the page Footer | Anyleson - Learning Platform
INR (₹)
India Rupee
$
United States Dollar

Display on the page Footer

Privacy Policy

Effective Date: 24 August , 2024

At Anyleson, we are committed to protecting your privacy and ensuring that your personal information is handled securely and responsibly. This Privacy Policy outlines how we collect, use, and safeguard your data when you use our platform.


Information We Collect


  1. Personal Information:

    • Name, email address, phone number, and billing details.

    • Account login credentials (username and password).



  2. Course Usage Data:

    • Progress and activity within courses.

    • Feedback and reviews submitted for courses.



  3. Technical Information:

    • IP address, browser type, device information, and cookies for improving website functionality.



  4. Communication Data:

    • Information from your interactions with our customer support.




How We Use Your Information


  1. To Provide Services:

    • Process course purchases, registrations, and access to content.



  2. To Improve User Experience:

    • Analyze user behavior to enhance course offerings and platform features.



  3. To Communicate:

    • Send updates, notifications, and promotional offers (only if you’ve opted in).



  4. For Legal Compliance:

    • Meet legal or regulatory requirements and prevent fraud.




How We Protect Your Information


  1. Data Encryption: All sensitive data is encrypted during transmission using SSL.

  2. Access Control: Only authorized personnel have access to personal information.

  3. Secure Storage: Data is stored on secure servers with regular security updates.


Sharing Your Information

We do not sell, rent, or trade your personal data. However, we may share your information with:


  1. Service Providers:

    • Payment processors and hosting services that assist in delivering our platform.



  2. Legal Authorities:

    • When required by law or to protect our legal rights.




Your Rights


  1. Access and Update: You can view and update your personal information in your account settings.

  2. Request Deletion: You have the right to request deletion of your data by contacting us.

  3. Opt-Out: You can opt out of receiving promotional emails by clicking the “unsubscribe” link in our emails.


Cookies Policy

We use cookies to enhance your experience by:


  • Remembering your preferences.

  • Analyzing website traffic.
    You can manage your cookie preferences through your browser settings.


Third-Party Links

Our platform may contain links to third-party websites. We are not responsible for their privacy practices and recommend reviewing their privacy policies.


Policy Updates

We may update this Privacy Policy from time to time. Changes will be posted on this page, and the "Effective Date" will be updated. Please review the policy periodically.


Contact Us

If you have any questions or concerns about our Privacy Policy or how your data is handled, please contact us at:

Email: support@anyleson.comThank you for trusting Anyleson with your learning journey!