===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
bsh-2.0b4/asm/src/bsh/org/objectweb/asm/ClassWriter.java-404-    b[201] = LABELW_INSN; // JSR_W
bsh-2.0b4/asm/src/bsh/org/objectweb/asm/ClassWriter.java:405:    // temporary opcodes used internally by ASM - see Label and CodeWriter
bsh-2.0b4/asm/src/bsh/org/objectweb/asm/ClassWriter.java-406-    for (i = 202; i < 220; ++i) {
##############################################
bsh-2.0b4/asm/README-asm.txt-1-
bsh-2.0b4/asm/README-asm.txt:2:These files are part of the org.objectweb.asm distribution.
bsh-2.0b4/asm/README-asm.txt-3-(http://asm.objectweb.org) and are included under the terms of the LGPL license.
bsh-2.0b4/asm/README-asm.txt-4-
bsh-2.0b4/asm/README-asm.txt:5:ASM is a very light weight, fast, visitor-pattern style Java byte code 
bsh-2.0b4/asm/README-asm.txt-6-reader / generator.  
##############################################
bsh-2.0b4/asm/README-asm.txt-8-We have repackaged these classes under a "bsh." prefix for two reasons: 
bsh-2.0b4/asm/README-asm.txt:9:1) BeanShell uses the subset of ASM only for writing classes and 
bsh-2.0b4/asm/README-asm.txt-10-2) Since BeanShell is widely distributed we don't want to break the ability
bsh-2.0b4/asm/README-asm.txt:11:of script writers to use updated versions of ASM in their scripts.
bsh-2.0b4/asm/README-asm.txt-12-
##############################################
bsh-2.0b4/docs/manual/html/bshcommands.html-141-    try {
bsh-2.0b4/docs/manual/html/bshcommands.html:142:        eval("foo>>><>M>JK$LJLK$");
bsh-2.0b4/docs/manual/html/bshcommands.html-143-    } catch ( EvalError e ) {
##############################################
bsh-2.0b4/docs/manual/html/intro.html-83-expressions, pipes, etc.). 
bsh-2.0b4/docs/manual/html/intro.html:84:As a result there has developed a casm between the scripting languages 
bsh-2.0b4/docs/manual/html/intro.html-85-and the application languages created by the collapse of the type system 
##############################################
bsh-2.0b4/docs/manual/bshmanual.html-117-expressions, pipes, etc.). 
bsh-2.0b4/docs/manual/bshmanual.html:118:As a result there has developed a casm between the scripting languages 
bsh-2.0b4/docs/manual/bshmanual.html-119-and the application languages created by the collapse of the type system 
##############################################
bsh-2.0b4/docs/manual/bshmanual.html-4814-    try {
bsh-2.0b4/docs/manual/bshmanual.html:4815:        eval("foo>>><>M>JK$LJLK$");
bsh-2.0b4/docs/manual/bshmanual.html-4816-    } catch ( EvalError e ) {
##############################################
bsh-2.0b4/docs/manual/intro.xml-80-expressions, pipes, etc.). 
bsh-2.0b4/docs/manual/intro.xml:81:As a result there has developed a casm between the scripting languages 
bsh-2.0b4/docs/manual/intro.xml-82-and the application languages created by the collapse of the type system 
##############################################
bsh-2.0b4/scripts/bsh-14-# e.g. Win
bsh-2.0b4/scripts/bsh:15:#DEFAULTBSH=`cygpath --windows $HOME/pkg/bsh-1.3a1.jar`
bsh-2.0b4/scripts/bsh-16-# e.g. Unix
##############################################
bsh-2.0b4/scripts/bsh-18-
bsh-2.0b4/scripts/bsh:19:name=`basename $0`
bsh-2.0b4/scripts/bsh-20-if [ $name = "bshd" ]; then
##############################################
bsh-2.0b4/scripts/bshd-14-# e.g. Win
bsh-2.0b4/scripts/bshd:15:#DEFAULTBSH=`cygpath --windows $HOME/pkg/bsh-1.3a1.jar`
bsh-2.0b4/scripts/bshd-16-# e.g. Unix
##############################################
bsh-2.0b4/scripts/bshd-18-
bsh-2.0b4/scripts/bshd:19:name=`basename $0`
bsh-2.0b4/scripts/bshd-20-if [ $name = "bshd" ]; then
##############################################
bsh-2.0b4/src/bsh/commands/eval.bsh-24-    try {
bsh-2.0b4/src/bsh/commands/eval.bsh:25:        eval("foo>>><>M>JK$LJLK$");
bsh-2.0b4/src/bsh/commands/eval.bsh-26-    } catch ( EvalError e ) {
##############################################
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-43-/**
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java:44:	ClassGeneratorUtil utilizes the ASM (www.objectweb.org) bytecode generator 
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-45-	by Eric Bruneton in order to generate class "stubs" for BeanShell at
##############################################
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-185-
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java:186:		String sourceFile = "BeanShell Generated via ASM (www.objectweb.org)";
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-187-		ClassWriter cw = new ClassWriter(false);
##############################################
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-270-	/**
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java:271:		Translate bsh.Modifiers into ASM modifier bitflags.
bsh-2.0b4/src/bsh/ClassGeneratorUtil.java-272-	*/
##############################################
bsh-2.0b4/debian/patches/01_EnableBsfAdapter_buildXml.patch-15-+	-->
bsh-2.0b4/debian/patches/01_EnableBsfAdapter_buildXml.patch:16: 	<!-- Uncomment to build without the ASM class generator code.
bsh-2.0b4/debian/patches/01_EnableBsfAdapter_buildXml.patch-17- 	<property name="exclude-classgen" 
##############################################
bsh-2.0b4/.pc/01_EnableBsfAdapter_buildXml.patch/build.xml-60-
bsh-2.0b4/.pc/01_EnableBsfAdapter_buildXml.patch/build.xml:61:	<!-- Uncomment to build without the ASM class generator code.
bsh-2.0b4/.pc/01_EnableBsfAdapter_buildXml.patch/build.xml-62-	<property name="exclude-classgen" 
##############################################
bsh-2.0b4/.pc/05_link_javadoc.patch/build.xml-60-	-->
bsh-2.0b4/.pc/05_link_javadoc.patch/build.xml:61:	<!-- Uncomment to build without the ASM class generator code.
bsh-2.0b4/.pc/05_link_javadoc.patch/build.xml-62-	<property name="exclude-classgen" 
##############################################
bsh-2.0b4/build.xml-60-	-->
bsh-2.0b4/build.xml:61:	<!-- Uncomment to build without the ASM class generator code.
bsh-2.0b4/build.xml-62-	<property name="exclude-classgen"